diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-10 21:43:17 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-10 21:43:17 +0000 |
commit | b39e7a88bd6d2cbe16754ebca13af1a0ca837fb1 (patch) | |
tree | bbb01564db7c3a79032fdb8dec716c7496c9c9e2 /content/browser/plugin_service_impl.h | |
parent | 52da2379abbfa18dbc333bb275b7377ad8dce551 (diff) | |
download | chromium_src-b39e7a88bd6d2cbe16754ebca13af1a0ca837fb1.zip chromium_src-b39e7a88bd6d2cbe16754ebca13af1a0ca837fb1.tar.gz chromium_src-b39e7a88bd6d2cbe16754ebca13af1a0ca837fb1.tar.bz2 |
Revert 117078 - Move creation and ownership of ResourceDispatcherHost and PluginService to content. This gives a few benefits:
-avoid having each embedder know when to create/destruct these objects, as well as contained objects (i.e. those related to downloads)
-avoid having to tell embedders about specifics of BrowserThread startup/shutdown
-move ResourceDispatcherHost's getter to content where it belongs
Some code (extensions+promos) used the fact that RDH is NULL in unittests as a signal to not use the utility process. I've switches those unittests to set a flag on the objects instead.
I've taken out the DnsParallelism field trial (not used anymore, confirmed with jar) as it was the only thing that caused MetricsService to depend on IOThread initialization, which also depended on MetricsService (through FieldTrials). This two-sided dependency always annoyed me and made the code hard to restructure.
BUG=98716
Review URL: http://codereview.chromium.org/9150016
TBR=jam@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117096 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/plugin_service_impl.h')
-rw-r--r-- | content/browser/plugin_service_impl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/content/browser/plugin_service_impl.h b/content/browser/plugin_service_impl.h index a9aee11..4a2c203 100644 --- a/content/browser/plugin_service_impl.h +++ b/content/browser/plugin_service_impl.h @@ -106,6 +106,9 @@ class CONTENT_EXPORT PluginServiceImpl virtual void SetPluginListForTesting( webkit::npapi::PluginList* plugin_list) OVERRIDE; + // Gets the browser's UI locale. + const std::string& GetUILocale(); + // Like FindNpapiPluginProcess but for Pepper. PpapiPluginProcessHost* FindPpapiPluginProcess(const FilePath& plugin_path); PpapiPluginProcessHost* FindPpapiBrokerProcess(const FilePath& broker_path); @@ -197,6 +200,9 @@ class CONTENT_EXPORT PluginServiceImpl // The plugin list instance. webkit::npapi::PluginList* plugin_list_; + // The browser's UI locale. + const std::string ui_locale_; + content::NotificationRegistrar registrar_; #if defined(OS_WIN) |