| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 const GURL& url, content::ResourceContext* context) OVERRIDE; | 152 const GURL& url, content::ResourceContext* context) OVERRIDE; |
| 153 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 153 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 154 virtual content::SpeechRecognitionManagerDelegate* | 154 virtual content::SpeechRecognitionManagerDelegate* |
| 155 GetSpeechRecognitionManagerDelegate() OVERRIDE; | 155 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
| 156 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 156 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
| 157 virtual net::NetLog* GetNetLog() OVERRIDE; | 157 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 158 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 158 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 159 virtual bool IsFastShutdownPossible() OVERRIDE; | 159 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 160 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 160 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
| 161 const GURL& url, | 161 const GURL& url, |
| 162 WebPreferences* prefs) OVERRIDE; | 162 webkit_glue::WebPreferences* prefs) OVERRIDE; |
| 163 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 163 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
| 164 const std::string& key, | 164 const std::string& key, |
| 165 const std::string& value) OVERRIDE; | 165 const std::string& value) OVERRIDE; |
| 166 virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE; | 166 virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE; |
| 167 virtual void BrowserURLHandlerCreated( | 167 virtual void BrowserURLHandlerCreated( |
| 168 content::BrowserURLHandler* handler) OVERRIDE; | 168 content::BrowserURLHandler* handler) OVERRIDE; |
| 169 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; | 169 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; |
| 170 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; | 170 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; |
| 171 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; | 171 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; |
| 172 virtual std::string GetDefaultDownloadName() OVERRIDE; | 172 virtual std::string GetDefaultDownloadName() OVERRIDE; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 188 private: | 188 private: |
| 189 // Set of origins that can use TCP/UDP private APIs from NaCl. | 189 // Set of origins that can use TCP/UDP private APIs from NaCl. |
| 190 std::set<std::string> allowed_socket_origins_; | 190 std::set<std::string> allowed_socket_origins_; |
| 191 | 191 |
| 192 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 192 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 193 }; | 193 }; |
| 194 | 194 |
| 195 } // namespace chrome | 195 } // namespace chrome |
| 196 | 196 |
| 197 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 197 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |