| OLD | NEW |
| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 int render_process_id, | 111 int render_process_id, |
| 112 int render_view_id, | 112 int render_view_id, |
| 113 int notification_id) OVERRIDE; | 113 int notification_id) OVERRIDE; |
| 114 virtual bool CanCreateWindow( | 114 virtual bool CanCreateWindow( |
| 115 const GURL& source_origin, | 115 const GURL& source_origin, |
| 116 WindowContainerType container_type, | 116 WindowContainerType container_type, |
| 117 const content::ResourceContext& context, | 117 const content::ResourceContext& context, |
| 118 int render_process_id) OVERRIDE; | 118 int render_process_id) OVERRIDE; |
| 119 virtual std::string GetWorkerProcessTitle( | 119 virtual std::string GetWorkerProcessTitle( |
| 120 const GURL& url, const content::ResourceContext& context) OVERRIDE; | 120 const GURL& url, const content::ResourceContext& context) OVERRIDE; |
| 121 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; | 121 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 122 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 122 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
| 123 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; | 123 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; |
| 124 virtual net::NetLog* GetNetLog() OVERRIDE; | 124 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 125 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; | 125 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; |
| 126 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 126 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 127 virtual bool IsFastShutdownPossible() OVERRIDE; | 127 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 128 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; | 128 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; |
| 129 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 129 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
| 130 const std::string& key, | 130 const std::string& key, |
| 131 const std::string& value) OVERRIDE; | 131 const std::string& value) OVERRIDE; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 145 #if defined(USE_NSS) | 145 #if defined(USE_NSS) |
| 146 virtual | 146 virtual |
| 147 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 147 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 148 const GURL& url) OVERRIDE; | 148 const GURL& url) OVERRIDE; |
| 149 #endif | 149 #endif |
| 150 }; | 150 }; |
| 151 | 151 |
| 152 } // namespace chrome | 152 } // namespace chrome |
| 153 | 153 |
| 154 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 154 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |