| 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 "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "content/browser/content_browser_client.h" | 10 #include "content/browser/content_browser_client.h" |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 99 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
| 100 const std::string& key, | 100 const std::string& key, |
| 101 const std::string& value) OVERRIDE; | 101 const std::string& value) OVERRIDE; |
| 102 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; | 102 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; |
| 103 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; | 103 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; |
| 104 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; | 104 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; |
| 105 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; | 105 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; |
| 106 virtual void ChooseSavePath(const base::WeakPtr<SavePackage>& save_package, | 106 virtual void ChooseSavePath(const base::WeakPtr<SavePackage>& save_package, |
| 107 const FilePath& suggested_path, | 107 const FilePath& suggested_path, |
| 108 bool can_save_as_complete) OVERRIDE; | 108 bool can_save_as_complete) OVERRIDE; |
| 109 virtual void EnterFullscreenMode() OVERRIDE; |
| 110 virtual void ExitFullscreenMode() OVERRIDE; |
| 109 | 111 |
| 110 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 112 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 111 // Can return an optional fd for crash handling, otherwise returns -1. | 113 // Can return an optional fd for crash handling, otherwise returns -1. |
| 112 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; | 114 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; |
| 113 #endif | 115 #endif |
| 114 #if defined(USE_NSS) | 116 #if defined(USE_NSS) |
| 115 virtual | 117 virtual |
| 116 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 118 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 117 const GURL& url) OVERRIDE; | 119 const GURL& url) OVERRIDE; |
| 118 #endif | 120 #endif |
| 119 }; | 121 }; |
| 120 | 122 |
| 121 } // namespace chrome | 123 } // namespace chrome |
| 122 | 124 |
| 123 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 125 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |