summaryrefslogtreecommitdiffstats
path: root/content/browser/renderer_host/render_process_host_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/renderer_host/render_process_host_impl.h')
-rw-r--r--content/browser/renderer_host/render_process_host_impl.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
index e76ad9b..8ef5f19 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -23,10 +23,10 @@
#include "ipc/ipc_platform_file.h"
#include "ui/surface/transport_dib.h"
-class CommandLine;
struct ViewHostMsg_CompositorSurfaceBuffersSwapped_Params;
namespace base {
+class CommandLine;
class MessageLoop;
}
@@ -274,13 +274,14 @@ class CONTENT_EXPORT RenderProcessHostImpl
// Generates a command line to be used to spawn a renderer and appends the
// results to |*command_line|.
- void AppendRendererCommandLine(CommandLine* command_line) const;
+ void AppendRendererCommandLine(base::CommandLine* command_line) const;
// Copies applicable command line switches from the given |browser_cmd| line
// flags to the output |renderer_cmd| line flags. Not all switches will be
// copied over.
- void PropagateBrowserCommandLineToRenderer(const CommandLine& browser_cmd,
- CommandLine* renderer_cmd) const;
+ void PropagateBrowserCommandLineToRenderer(
+ const base::CommandLine& browser_cmd,
+ base::CommandLine* renderer_cmd) const;
// Callers can reduce the RenderProcess' priority.
void SetBackgrounded(bool backgrounded);