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 CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 virtual bool CanCreateWindow( | 135 virtual bool CanCreateWindow( |
136 const GURL& origin, | 136 const GURL& origin, |
137 WindowContainerType container_type, | 137 WindowContainerType container_type, |
138 content::ResourceContext* context, | 138 content::ResourceContext* context, |
139 int render_process_id) OVERRIDE; | 139 int render_process_id) OVERRIDE; |
140 virtual std::string GetWorkerProcessTitle( | 140 virtual std::string GetWorkerProcessTitle( |
141 const GURL& url, content::ResourceContext* context) OVERRIDE; | 141 const GURL& url, content::ResourceContext* context) OVERRIDE; |
142 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 142 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
143 virtual SpeechInputManagerDelegate* GetSpeechInputManagerDelegate() OVERRIDE; | 143 virtual SpeechInputManagerDelegate* GetSpeechInputManagerDelegate() OVERRIDE; |
144 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 144 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
145 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; | |
146 virtual net::NetLog* GetNetLog() OVERRIDE; | 145 virtual net::NetLog* GetNetLog() OVERRIDE; |
147 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 146 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
148 virtual bool IsFastShutdownPossible() OVERRIDE; | 147 virtual bool IsFastShutdownPossible() OVERRIDE; |
149 virtual void OverrideWebkitPrefs(RenderViewHost* rvh, | 148 virtual void OverrideWebkitPrefs(RenderViewHost* rvh, |
150 WebPreferences* prefs) OVERRIDE; | 149 WebPreferences* prefs) OVERRIDE; |
151 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 150 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
152 const std::string& key, | 151 const std::string& key, |
153 const std::string& value) OVERRIDE; | 152 const std::string& value) OVERRIDE; |
154 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; | 153 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; |
155 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; | 154 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; |
(...skipping 17 matching lines...) Expand all Loading... |
173 const GURL& url) OVERRIDE; | 172 const GURL& url) OVERRIDE; |
174 #endif | 173 #endif |
175 | 174 |
176 private: | 175 private: |
177 ShellBrowserMainParts* shell_browser_main_parts_; | 176 ShellBrowserMainParts* shell_browser_main_parts_; |
178 }; | 177 }; |
179 | 178 |
180 } // namespace content | 179 } // namespace content |
181 | 180 |
182 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 181 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |