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 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 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 const GURL& source_origin, | 187 const GURL& source_origin, |
188 WindowContainerType container_type, | 188 WindowContainerType container_type, |
189 const GURL& target_url, | 189 const GURL& target_url, |
190 const content::Referrer& referrer, | 190 const content::Referrer& referrer, |
191 WindowOpenDisposition disposition, | 191 WindowOpenDisposition disposition, |
192 const blink::WebWindowFeatures& features, | 192 const blink::WebWindowFeatures& features, |
193 bool user_gesture, | 193 bool user_gesture, |
194 bool opener_suppressed, | 194 bool opener_suppressed, |
195 content::ResourceContext* context, | 195 content::ResourceContext* context, |
196 int render_process_id, | 196 int render_process_id, |
197 int opener_id, | 197 int opener_render_view_id, |
| 198 int opener_render_frame_id, |
198 bool* no_javascript_access) override; | 199 bool* no_javascript_access) override; |
199 void ResourceDispatcherHostCreated() override; | 200 void ResourceDispatcherHostCreated() override; |
200 content::SpeechRecognitionManagerDelegate* | 201 content::SpeechRecognitionManagerDelegate* |
201 CreateSpeechRecognitionManagerDelegate() override; | 202 CreateSpeechRecognitionManagerDelegate() override; |
202 net::NetLog* GetNetLog() override; | 203 net::NetLog* GetNetLog() override; |
203 content::AccessTokenStore* CreateAccessTokenStore() override; | 204 content::AccessTokenStore* CreateAccessTokenStore() override; |
204 bool IsFastShutdownPossible() override; | 205 bool IsFastShutdownPossible() override; |
205 void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 206 void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
206 content::WebPreferences* prefs) override; | 207 content::WebPreferences* prefs) override; |
207 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; | 208 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 312 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
312 | 313 |
313 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 314 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
314 | 315 |
315 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 316 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
316 }; | 317 }; |
317 | 318 |
318 } // namespace chrome | 319 } // namespace chrome |
319 | 320 |
320 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 321 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |