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