diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-15 01:19:03 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-15 01:19:03 +0000 |
commit | 6f08af88709675d9c1b63f9b7c7383844d36386f (patch) | |
tree | dfef137d617ecb26ff156aee7d800067e161d613 /webkit/support | |
parent | 2c7e28115d1334537dbf984ad6bf2bebf46c8739 (diff) | |
download | chromium_src-6f08af88709675d9c1b63f9b7c7383844d36386f.zip chromium_src-6f08af88709675d9c1b63f9b7c7383844d36386f.tar.gz chromium_src-6f08af88709675d9c1b63f9b7c7383844d36386f.tar.bz2 |
Move the V8 benchmarking_extension.cc/.h files out of webkit/extensions into chrome as the functionality
exposed by this extension is chrome specific. The IPCs used by this extension have all been moved to chrome
to a new header file benchmarking_messages.h in chrome\common.
Added a new message filter object in chrome\browser which filters the benchmarking IPCs.
Most of the changes in this CL are centered around ensuring that the benchmarking stuff gets initialized
in the same order as before.
Continuing changes to get rid of the pattern of IPC messags spanning across content and chrome.
BUG=87335
Review URL: http://codereview.chromium.org/7885013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101214 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/support')
-rw-r--r-- | webkit/support/webkit_support_glue.cc | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/webkit/support/webkit_support_glue.cc b/webkit/support/webkit_support_glue.cc index 968b649..501356e 100644 --- a/webkit/support/webkit_support_glue.cc +++ b/webkit/support/webkit_support_glue.cc @@ -53,21 +53,6 @@ std::string GetWebKitLocale() { return "en-US"; } -void CloseCurrentConnections() { -} - -void SetCacheMode(bool enabled) { -} - -void ClearCache(bool preserve_ssl_info) { -} - -void ClearHostResolverCache() { -} - -void ClearPredictorCache() { -} - std::string BuildUserAgent(bool mimic_windows) { return webkit_glue::BuildUserAgentHelper(mimic_windows, "DumpRenderTree/0.0.0.0"); |