OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 bool* no_javascript_access) OVERRIDE; | 235 bool* no_javascript_access) OVERRIDE; |
236 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 236 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
237 virtual content::SpeechRecognitionManagerDelegate* | 237 virtual content::SpeechRecognitionManagerDelegate* |
238 GetSpeechRecognitionManagerDelegate() OVERRIDE; | 238 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
239 virtual net::NetLog* GetNetLog() OVERRIDE; | 239 virtual net::NetLog* GetNetLog() OVERRIDE; |
240 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 240 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
241 virtual bool IsFastShutdownPossible() OVERRIDE; | 241 virtual bool IsFastShutdownPossible() OVERRIDE; |
242 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 242 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
243 const GURL& url, | 243 const GURL& url, |
244 content::WebPreferences* prefs) OVERRIDE; | 244 content::WebPreferences* prefs) OVERRIDE; |
245 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | |
246 const std::string& key, | |
247 const std::string& value) OVERRIDE; | |
248 virtual void BrowserURLHandlerCreated( | 245 virtual void BrowserURLHandlerCreated( |
249 content::BrowserURLHandler* handler) OVERRIDE; | 246 content::BrowserURLHandler* handler) OVERRIDE; |
250 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; | 247 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; |
251 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; | 248 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; |
252 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; | 249 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; |
253 virtual std::string GetDefaultDownloadName() OVERRIDE; | 250 virtual std::string GetDefaultDownloadName() OVERRIDE; |
254 virtual void DidCreatePpapiPlugin( | 251 virtual void DidCreatePpapiPlugin( |
255 content::BrowserPpapiHost* browser_host) OVERRIDE; | 252 content::BrowserPpapiHost* browser_host) OVERRIDE; |
256 virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost( | 253 virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost( |
257 int plugin_process_id) OVERRIDE; | 254 int plugin_process_id) OVERRIDE; |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 345 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
349 | 346 |
350 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 347 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
351 | 348 |
352 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 349 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
353 }; | 350 }; |
354 | 351 |
355 } // namespace chrome | 352 } // namespace chrome |
356 | 353 |
357 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 354 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |