Bug 144081

Summary: There should only be one way to get the system memory size.
Product: WebKit Reporter: Andreas Kling <kling>
Component: Web Template FrameworkAssignee: Andreas Kling <kling>
Status: RESOLVED FIXED    
Severity: Normal CC: bfulgham, commit-queue, kling
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch koivisto: review+

Description Andreas Kling 2015-04-22 17:22:28 PDT
This is currently implemented in different ways in different files. Let's put something in WTF that everyone can use.
Comment 1 Andreas Kling 2015-04-22 17:30:02 PDT
Tim pointed out that WTF already has ramSize(). So let's try using that everywhere!
Comment 2 Andreas Kling 2015-04-22 23:23:53 PDT
Created attachment 251411 [details]
Patch
Comment 3 WebKit Commit Bot 2015-04-22 23:25:15 PDT
Attachment 251411 [details] did not pass style-queue:


ERROR: Source/WTF/wtf/RAMSize.cpp:33:  Alphabetical sorting problem.  [build/include_order] [4]
ERROR: Source/WTF/wtf/RAMSize.cpp:91:  Missing space before {  [whitespace/braces] [5]
ERROR: Source/WebKit2/WebProcess/cocoa/WebProcessCocoa.mm:54:  Alphabetical sorting problem.  [build/include_order] [4]
ERROR: Source/WebKit2/NetworkProcess/cocoa/NetworkProcessCocoa.mm:36:  Alphabetical sorting problem.  [build/include_order] [4]
Total errors found: 4 in 11 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 4 Andreas Kling 2015-04-23 00:08:39 PDT
Created attachment 251413 [details]
Patch
Comment 5 WebKit Commit Bot 2015-04-23 00:10:59 PDT
Attachment 251413 [details] did not pass style-queue:


ERROR: Source/WebKit2/WebProcess/cocoa/WebProcessCocoa.mm:54:  Alphabetical sorting problem.  [build/include_order] [4]
Total errors found: 1 in 11 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 6 Andreas Kling 2015-04-23 01:23:28 PDT
Committed r183181: <http://trac.webkit.org/changeset/183181>
Comment 7 Brent Fulgham 2015-04-23 08:39:47 PDT
This seems to be creating a build failure:

/Volumes/Data/slave/yosemite-release/build/Source/WebKit2/WebProcess/cocoa/WebProcessCocoa.mm:58:9: fatal error: 'wtf/RamSize.h' file not found
Comment 8 Alexey Proskuryakov 2015-04-23 09:10:18 PDT
Started fixing the build in <http://trac.webkit.org/r183188>. There may be more...
Comment 9 Alexey Proskuryakov 2015-04-23 09:58:15 PDT
Andy Estes pointed out that the WTF part of the fix was not necessary. Rolled it out in r183190.