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

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 8609010: Make DevToolsManager a singleton, remove it from ContentBrowserClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reverted notification service changes, use non-leaky singleton Created 9 years, 1 month 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 | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 virtual bool CanCreateWindow( 116 virtual bool CanCreateWindow(
117 const GURL& source_origin, 117 const GURL& source_origin,
118 WindowContainerType container_type, 118 WindowContainerType container_type,
119 const content::ResourceContext& context, 119 const content::ResourceContext& context,
120 int render_process_id) OVERRIDE; 120 int render_process_id) OVERRIDE;
121 virtual std::string GetWorkerProcessTitle( 121 virtual std::string GetWorkerProcessTitle(
122 const GURL& url, const content::ResourceContext& context) OVERRIDE; 122 const GURL& url, const content::ResourceContext& context) OVERRIDE;
123 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; 123 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE;
124 virtual ui::Clipboard* GetClipboard() OVERRIDE; 124 virtual ui::Clipboard* GetClipboard() OVERRIDE;
125 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; 125 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE;
126 virtual DevToolsManager* GetDevToolsManager() OVERRIDE;
127 virtual net::NetLog* GetNetLog() OVERRIDE; 126 virtual net::NetLog* GetNetLog() OVERRIDE;
128 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; 127 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE;
129 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; 128 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE;
130 virtual bool IsFastShutdownPossible() OVERRIDE; 129 virtual bool IsFastShutdownPossible() OVERRIDE;
131 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; 130 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE;
132 virtual void UpdateInspectorSetting(RenderViewHost* rvh, 131 virtual void UpdateInspectorSetting(RenderViewHost* rvh,
133 const std::string& key, 132 const std::string& key,
134 const std::string& value) OVERRIDE; 133 const std::string& value) OVERRIDE;
135 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; 134 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE;
136 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; 135 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE;
(...skipping 11 matching lines...) Expand all
148 #if defined(USE_NSS) 147 #if defined(USE_NSS)
149 virtual 148 virtual
150 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( 149 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate(
151 const GURL& url) OVERRIDE; 150 const GURL& url) OVERRIDE;
152 #endif 151 #endif
153 }; 152 };
154 153
155 } // namespace chrome 154 } // namespace chrome
156 155
157 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 156 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698