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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 const std::string& value) OVERRIDE; | 198 const std::string& value) OVERRIDE; |
199 virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE; | 199 virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE; |
200 virtual void BrowserURLHandlerCreated( | 200 virtual void BrowserURLHandlerCreated( |
201 content::BrowserURLHandler* handler) OVERRIDE; | 201 content::BrowserURLHandler* handler) OVERRIDE; |
202 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; | 202 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; |
203 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; | 203 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; |
204 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; | 204 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; |
205 virtual std::string GetDefaultDownloadName() OVERRIDE; | 205 virtual std::string GetDefaultDownloadName() OVERRIDE; |
206 virtual void DidCreatePpapiPlugin( | 206 virtual void DidCreatePpapiPlugin( |
207 content::BrowserPpapiHost* browser_host) OVERRIDE; | 207 content::BrowserPpapiHost* browser_host) OVERRIDE; |
| 208 virtual content::BrowserPpapiHost* GetExternalBrowserPpapiHost( |
| 209 int plugin_process_id) OVERRIDE; |
208 virtual bool AllowPepperSocketAPI( | 210 virtual bool AllowPepperSocketAPI( |
209 content::BrowserContext* browser_context, | 211 content::BrowserContext* browser_context, |
210 const GURL& url, | 212 const GURL& url, |
211 const content::SocketPermissionRequest& params) OVERRIDE; | 213 const content::SocketPermissionRequest& params) OVERRIDE; |
212 virtual bool AllowPepperPrivateFileAPI() OVERRIDE; | 214 virtual bool AllowPepperPrivateFileAPI() OVERRIDE; |
213 virtual FilePath GetHyphenDictionaryDirectory() OVERRIDE; | 215 virtual FilePath GetHyphenDictionaryDirectory() OVERRIDE; |
214 | 216 |
215 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 217 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
216 virtual void GetAdditionalMappedFilesForChildProcess( | 218 virtual void GetAdditionalMappedFilesForChildProcess( |
217 const CommandLine& command_line, | 219 const CommandLine& command_line, |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 // Cached version of the locale so we can return the locale on the I/O | 255 // Cached version of the locale so we can return the locale on the I/O |
254 // thread. | 256 // thread. |
255 std::string io_thread_application_locale_; | 257 std::string io_thread_application_locale_; |
256 | 258 |
257 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 259 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
258 }; | 260 }; |
259 | 261 |
260 } // namespace chrome | 262 } // namespace chrome |
261 | 263 |
262 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 264 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |