| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 int notification_id) OVERRIDE; | 137 int notification_id) OVERRIDE; |
| 138 virtual bool CanCreateWindow( | 138 virtual bool CanCreateWindow( |
| 139 const GURL& opener_url, | 139 const GURL& opener_url, |
| 140 const GURL& source_origin, | 140 const GURL& source_origin, |
| 141 WindowContainerType container_type, | 141 WindowContainerType container_type, |
| 142 content::ResourceContext* context, | 142 content::ResourceContext* context, |
| 143 int render_process_id) OVERRIDE; | 143 int render_process_id) OVERRIDE; |
| 144 virtual std::string GetWorkerProcessTitle( | 144 virtual std::string GetWorkerProcessTitle( |
| 145 const GURL& url, content::ResourceContext* context) OVERRIDE; | 145 const GURL& url, content::ResourceContext* context) OVERRIDE; |
| 146 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 146 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 147 virtual content::SpeechInputManagerDelegate* | 147 virtual content::SpeechRecognitionManagerDelegate* |
| 148 GetSpeechInputManagerDelegate() OVERRIDE; | 148 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
| 149 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 149 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
| 150 virtual net::NetLog* GetNetLog() OVERRIDE; | 150 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 151 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 151 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 152 virtual bool IsFastShutdownPossible() OVERRIDE; | 152 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 153 virtual void OverrideWebkitPrefs(RenderViewHost* rvh, | 153 virtual void OverrideWebkitPrefs(RenderViewHost* rvh, |
| 154 const GURL& url, | 154 const GURL& url, |
| 155 WebPreferences* prefs) OVERRIDE; | 155 WebPreferences* prefs) OVERRIDE; |
| 156 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 156 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
| 157 const std::string& key, | 157 const std::string& key, |
| 158 const std::string& value) OVERRIDE; | 158 const std::string& value) OVERRIDE; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 180 private: | 180 private: |
| 181 // Set of origins that can use TCP/UDP private APIs from NaCl. | 181 // Set of origins that can use TCP/UDP private APIs from NaCl. |
| 182 std::set<std::string> allowed_socket_origins_; | 182 std::set<std::string> allowed_socket_origins_; |
| 183 | 183 |
| 184 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 184 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 185 }; | 185 }; |
| 186 | 186 |
| 187 } // namespace chrome | 187 } // namespace chrome |
| 188 | 188 |
| 189 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 189 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |