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

Side by Side Diff: apps/shell/browser/shell_content_browser_client.h

Issue 196413016: Move CommandLine to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « apps/launcher.h ('k') | apps/shell/browser/shell_extensions_browser_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef APPS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef APPS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
6 #define APPS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 6 #define APPS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "content/public/browser/content_browser_client.h" 9 #include "content/public/browser/content_browser_client.h"
10 10
(...skipping 23 matching lines...) Expand all
34 content::BrowserContext* browser_context, 34 content::BrowserContext* browser_context,
35 content::ProtocolHandlerMap* protocol_handlers, 35 content::ProtocolHandlerMap* protocol_handlers,
36 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE; 36 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE;
37 // TODO(jamescook): Quota management? 37 // TODO(jamescook): Quota management?
38 // TODO(jamescook): Speech recognition? 38 // TODO(jamescook): Speech recognition?
39 virtual bool IsHandledURL(const GURL& url) OVERRIDE; 39 virtual bool IsHandledURL(const GURL& url) OVERRIDE;
40 virtual void SiteInstanceGotProcess(content::SiteInstance* site_instance) 40 virtual void SiteInstanceGotProcess(content::SiteInstance* site_instance)
41 OVERRIDE; 41 OVERRIDE;
42 virtual void SiteInstanceDeleting(content::SiteInstance* site_instance) 42 virtual void SiteInstanceDeleting(content::SiteInstance* site_instance)
43 OVERRIDE; 43 OVERRIDE;
44 virtual void AppendExtraCommandLineSwitches(CommandLine* command_line, 44 virtual void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
45 int child_process_id) OVERRIDE; 45 int child_process_id) OVERRIDE;
46 virtual void GetAdditionalAllowedSchemesForFileSystem( 46 virtual void GetAdditionalAllowedSchemesForFileSystem(
47 std::vector<std::string>* additional_schemes) OVERRIDE; 47 std::vector<std::string>* additional_schemes) OVERRIDE;
48 48
49 private: 49 private:
50 // Returns the extension or app associated with |site_instance| or NULL. 50 // Returns the extension or app associated with |site_instance| or NULL.
51 const extensions::Extension* GetExtension( 51 const extensions::Extension* GetExtension(
52 content::SiteInstance* site_instance); 52 content::SiteInstance* site_instance);
53 53
54 // Owned by content::BrowserMainLoop. 54 // Owned by content::BrowserMainLoop.
55 ShellBrowserMainParts* browser_main_parts_; 55 ShellBrowserMainParts* browser_main_parts_;
56 56
57 DISALLOW_COPY_AND_ASSIGN(ShellContentBrowserClient); 57 DISALLOW_COPY_AND_ASSIGN(ShellContentBrowserClient);
58 }; 58 };
59 59
60 } // namespace apps 60 } // namespace apps
61 61
62 #endif // APPS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 62 #endif // APPS_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « apps/launcher.h ('k') | apps/shell/browser/shell_extensions_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698