| Index: extensions/shell/browser/shell_content_browser_client.h
|
| diff --git a/extensions/shell/browser/shell_content_browser_client.h b/extensions/shell/browser/shell_content_browser_client.h
|
| index da884fd4f635d7761d7af679bc40a9e9da9ee388..1b5fbac3bfc44b2dece36a2eacd1239a223b4e87 100644
|
| --- a/extensions/shell/browser/shell_content_browser_client.h
|
| +++ b/extensions/shell/browser/shell_content_browser_client.h
|
| @@ -10,6 +10,10 @@
|
|
|
| class GURL;
|
|
|
| +namespace base {
|
| +class CommandLine;
|
| +}
|
| +
|
| namespace content {
|
| class BrowserContext;
|
| }
|
| @@ -52,10 +56,15 @@ class ShellContentBrowserClient : public content::ContentBrowserClient {
|
| content::SiteInstance* site_instance) OVERRIDE;
|
| virtual void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
|
| int child_process_id) OVERRIDE;
|
| + virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost(
|
| + int plugin_process_id) OVERRIDE;
|
| virtual void GetAdditionalAllowedSchemesForFileSystem(
|
| std::vector<std::string>* additional_schemes) OVERRIDE;
|
|
|
| private:
|
| + // Appends command line switches for a renderer process.
|
| + void AppendRendererSwitches(base::CommandLine* command_line);
|
| +
|
| // Returns the extension or app associated with |site_instance| or NULL.
|
| const Extension* GetExtension(content::SiteInstance* site_instance);
|
|
|
|
|