Add infrastructure for handling website data in the network process
Created attachment 247530 [details] Patch
Attachment 247530 [details] did not pass style-queue: ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.h:66: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.h:68: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.h:111: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.h:113: Extra space before ( in function call [whitespace/parens] [4] ERROR: Tools/MiniBrowser/mac/WK2BrowserWindowController.m:419: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Tools/MiniBrowser/mac/WK2BrowserWindowController.m:421: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.cpp:117: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.cpp:135: Extra space before ( in function call [whitespace/parens] [4] Total errors found: 8 in 11 files If any of these errors are false positives, please file a bug against check-webkit-style.
Created attachment 247531 [details] Patch
Attachment 247531 [details] did not pass style-queue: ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.h:66: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.h:68: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.h:111: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.h:113: Extra space before ( in function call [whitespace/parens] [4] ERROR: Tools/MiniBrowser/mac/WK2BrowserWindowController.m:419: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Tools/MiniBrowser/mac/WK2BrowserWindowController.m:421: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.cpp:117: Extra space before ( in function call [whitespace/parens] [4] ERROR: Source/WebKit2/UIProcess/Network/NetworkProcessProxy.cpp:135: Extra space before ( in function call [whitespace/parens] [4] Total errors found: 8 in 11 files If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 247531 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=247531&action=review r=me > Source/WebKit2/UIProcess/Network/NetworkProcessProxy.cpp:144 > + Vector<SecurityOriginData> originData; > + for (auto& origin : origins) > + originData.append(SecurityOriginData::fromSecurityOrigin(*origin)); Could use reserveInitialCapacity + uncheckedAppend here.
Committed r180773: <http://trac.webkit.org/changeset/180773>