Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2049)

Unified Diff: content/shell/shell_main_delegate.h

Issue 10809016: Move content_shell and content_browsertests code into the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix android Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/shell_main.cc ('k') | content/shell/shell_main_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_main_delegate.h
===================================================================
--- content/shell/shell_main_delegate.h (revision 147404)
+++ content/shell/shell_main_delegate.h (working copy)
@@ -17,35 +17,35 @@
#if defined(OS_ANDROID)
class BrowserMainRunner;
#endif
-} // namespace content
-class ShellMainDelegate : public content::ContentMainDelegate {
+class ShellMainDelegate : public ContentMainDelegate {
public:
ShellMainDelegate();
virtual ~ShellMainDelegate();
- // content::ContentMainDelegate implementation:
+ // ContentMainDelegate implementation:
virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
virtual void PreSandboxStartup() OVERRIDE;
virtual int RunProcess(
const std::string& process_type,
- const content::MainFunctionParams& main_function_params) OVERRIDE;
- virtual content::ContentBrowserClient* CreateContentBrowserClient() OVERRIDE;
- virtual content::ContentRendererClient*
- CreateContentRendererClient() OVERRIDE;
+ const MainFunctionParams& main_function_params) OVERRIDE;
+ virtual ContentBrowserClient* CreateContentBrowserClient() OVERRIDE;
+ virtual ContentRendererClient* CreateContentRendererClient() OVERRIDE;
private:
void InitializeResourceBundle();
- scoped_ptr<content::ShellContentBrowserClient> browser_client_;
- scoped_ptr<content::ShellContentRendererClient> renderer_client_;
- content::ShellContentClient content_client_;
+ scoped_ptr<ShellContentBrowserClient> browser_client_;
+ scoped_ptr<ShellContentRendererClient> renderer_client_;
+ ShellContentClient content_client_;
#if defined(OS_ANDROID)
- scoped_ptr<content::BrowserMainRunner> browser_runner_;
+ scoped_ptr<BrowserMainRunner> browser_runner_;
#endif
DISALLOW_COPY_AND_ASSIGN(ShellMainDelegate);
};
+} // namespace content
+
#endif // CONTENT_SHELL_SHELL_MAIN_DELEGATE_H_
« no previous file with comments | « content/shell/shell_main.cc ('k') | content/shell/shell_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698