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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 int render_view_id, | 133 int render_view_id, |
134 int notification_id) OVERRIDE; | 134 int notification_id) OVERRIDE; |
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 SpeechRecognitionManagerDelegate* |
| 144 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
144 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 145 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
145 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; | 146 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; |
146 virtual net::NetLog* GetNetLog() OVERRIDE; | 147 virtual net::NetLog* GetNetLog() OVERRIDE; |
147 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 148 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
148 virtual bool IsFastShutdownPossible() OVERRIDE; | 149 virtual bool IsFastShutdownPossible() OVERRIDE; |
149 virtual void OverrideWebkitPrefs(RenderViewHost* rvh, | 150 virtual void OverrideWebkitPrefs(RenderViewHost* rvh, |
150 WebPreferences* prefs) OVERRIDE; | 151 WebPreferences* prefs) OVERRIDE; |
151 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 152 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
152 const std::string& key, | 153 const std::string& key, |
153 const std::string& value) OVERRIDE; | 154 const std::string& value) OVERRIDE; |
(...skipping 19 matching lines...) Expand all Loading... |
173 const GURL& url) OVERRIDE; | 174 const GURL& url) OVERRIDE; |
174 #endif | 175 #endif |
175 | 176 |
176 private: | 177 private: |
177 ShellBrowserMainParts* shell_browser_main_parts_; | 178 ShellBrowserMainParts* shell_browser_main_parts_; |
178 }; | 179 }; |
179 | 180 |
180 } // namespace content | 181 } // namespace content |
181 | 182 |
182 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 183 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |