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 CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ |
6 #define CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_BROWSER_MOCK_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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 int notification_id) OVERRIDE; | 86 int notification_id) OVERRIDE; |
87 virtual bool CanCreateWindow( | 87 virtual bool CanCreateWindow( |
88 const GURL& source_url, | 88 const GURL& source_url, |
89 WindowContainerType container_type, | 89 WindowContainerType container_type, |
90 const content::ResourceContext& context) OVERRIDE; | 90 const content::ResourceContext& context) OVERRIDE; |
91 virtual std::string GetWorkerProcessTitle( | 91 virtual std::string GetWorkerProcessTitle( |
92 const GURL& url, const content::ResourceContext& context) OVERRIDE; | 92 const GURL& url, const content::ResourceContext& context) OVERRIDE; |
93 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; | 93 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; |
94 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 94 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
95 virtual bool IsFastShutdownPossible() OVERRIDE; | 95 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 96 virtual void RegisterDevToolsRemoteListeners( |
| 97 DevToolsProtocolHandler* proto_handler) OVERRIDE; |
| 98 virtual void GetAdditionalStartPagesForDevTools( |
| 99 TabContents* dev_tools_tab, ListValue* results) OVERRIDE; |
96 | 100 |
97 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 101 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
98 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; | 102 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; |
99 #endif | 103 #endif |
100 | 104 |
101 #if defined(USE_NSS) | 105 #if defined(USE_NSS) |
102 virtual | 106 virtual |
103 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 107 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
104 const GURL& url) OVERRIDE; | 108 const GURL& url) OVERRIDE; |
105 #endif | 109 #endif |
106 }; | 110 }; |
107 | 111 |
108 } // namespace content | 112 } // namespace content |
109 | 113 |
110 #endif // CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ | 114 #endif // CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |