diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-17 23:07:15 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-17 23:07:15 +0000 |
commit | 2f3b1cce4c8d4d6a4b016f4d03fca5ee88348a2c (patch) | |
tree | 78766377b2779fe9b9afbc869a97f387b9b3d082 /content/browser/gpu/gpu_data_manager_impl.h | |
parent | 936e85963a6d11c79c7ea774bc41c8729c04693f (diff) | |
download | chromium_src-2f3b1cce4c8d4d6a4b016f4d03fca5ee88348a2c.zip chromium_src-2f3b1cce4c8d4d6a4b016f4d03fca5ee88348a2c.tar.gz chromium_src-2f3b1cce4c8d4d6a4b016f4d03fca5ee88348a2c.tar.bz2 |
Move CommandLine to base namespace.
Fix all forward-declares and header files referencing CommandLine.
This keeps a "using base::CommandLine" in the command line header file so that the rest of the source files can be changes in a follow-up.
TBR=sky
Review URL: https://codereview.chromium.org/196413016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257514 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/gpu/gpu_data_manager_impl.h')
-rw-r--r-- | content/browser/gpu/gpu_data_manager_impl.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/content/browser/gpu/gpu_data_manager_impl.h b/content/browser/gpu/gpu_data_manager_impl.h index e1ed2f8..e3e92af 100644 --- a/content/browser/gpu/gpu_data_manager_impl.h +++ b/content/browser/gpu/gpu_data_manager_impl.h @@ -22,10 +22,13 @@ #include "content/public/common/three_d_api_types.h" #include "gpu/config/gpu_info.h" -class CommandLine; class GURL; struct WebPreferences; +namespace base { +class CommandLine; +} + namespace content { class GpuDataManagerImplPrivate; @@ -95,14 +98,14 @@ class CONTENT_EXPORT GpuDataManagerImpl // Insert disable-feature switches corresponding to preliminary gpu feature // flags into the renderer process command line. - void AppendRendererCommandLine(CommandLine* command_line) const; + void AppendRendererCommandLine(base::CommandLine* command_line) const; // Insert switches into gpu process command line: kUseGL, etc. - void AppendGpuCommandLine(CommandLine* command_line) const; + void AppendGpuCommandLine(base::CommandLine* command_line) const; // Insert switches into plugin process command line: // kDisableCoreAnimationPlugins. - void AppendPluginCommandLine(CommandLine* command_line) const; + void AppendPluginCommandLine(base::CommandLine* command_line) const; // Update WebPreferences for renderer based on blacklisting decisions. void UpdateRendererWebPrefs(WebPreferences* prefs) const; |