| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 const GURL& source_origin, | 216 const GURL& source_origin, |
| 217 WindowContainerType container_type, | 217 WindowContainerType container_type, |
| 218 const GURL& target_url, | 218 const GURL& target_url, |
| 219 const content::Referrer& referrer, | 219 const content::Referrer& referrer, |
| 220 WindowOpenDisposition disposition, | 220 WindowOpenDisposition disposition, |
| 221 const blink::WebWindowFeatures& features, | 221 const blink::WebWindowFeatures& features, |
| 222 bool user_gesture, | 222 bool user_gesture, |
| 223 bool opener_suppressed, | 223 bool opener_suppressed, |
| 224 content::ResourceContext* context, | 224 content::ResourceContext* context, |
| 225 int render_process_id, | 225 int render_process_id, |
| 226 bool is_guest, | |
| 227 int opener_id, | 226 int opener_id, |
| 228 bool* no_javascript_access) OVERRIDE; | 227 bool* no_javascript_access) OVERRIDE; |
| 229 virtual std::string GetWorkerProcessTitle( | 228 virtual std::string GetWorkerProcessTitle( |
| 230 const GURL& url, content::ResourceContext* context) OVERRIDE; | 229 const GURL& url, content::ResourceContext* context) OVERRIDE; |
| 231 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 230 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 232 virtual content::SpeechRecognitionManagerDelegate* | 231 virtual content::SpeechRecognitionManagerDelegate* |
| 233 GetSpeechRecognitionManagerDelegate() OVERRIDE; | 232 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
| 234 virtual net::NetLog* GetNetLog() OVERRIDE; | 233 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 235 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 234 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 236 virtual bool IsFastShutdownPossible() OVERRIDE; | 235 virtual bool IsFastShutdownPossible() OVERRIDE; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 prerender::PrerenderTracker* prerender_tracker_; | 315 prerender::PrerenderTracker* prerender_tracker_; |
| 317 | 316 |
| 318 friend class DisableWebRtcEncryptionFlagTest; | 317 friend class DisableWebRtcEncryptionFlagTest; |
| 319 | 318 |
| 320 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 319 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 321 }; | 320 }; |
| 322 | 321 |
| 323 } // namespace chrome | 322 } // namespace chrome |
| 324 | 323 |
| 325 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 324 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |