| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 int render_view_id, | 197 int render_view_id, |
| 198 int notification_id) OVERRIDE; | 198 int notification_id) OVERRIDE; |
| 199 virtual bool CanCreateWindow(const GURL& opener_url, | 199 virtual bool CanCreateWindow(const GURL& opener_url, |
| 200 const GURL& opener_top_level_frame_url, | 200 const GURL& opener_top_level_frame_url, |
| 201 const GURL& source_origin, | 201 const GURL& source_origin, |
| 202 WindowContainerType container_type, | 202 WindowContainerType container_type, |
| 203 const GURL& target_url, | 203 const GURL& target_url, |
| 204 const content::Referrer& referrer, | 204 const content::Referrer& referrer, |
| 205 WindowOpenDisposition disposition, | 205 WindowOpenDisposition disposition, |
| 206 const blink::WebWindowFeatures& features, | 206 const blink::WebWindowFeatures& features, |
| 207 const std::vector<string16>& additional_features, |
| 207 bool user_gesture, | 208 bool user_gesture, |
| 208 bool opener_suppressed, | 209 bool opener_suppressed, |
| 209 content::ResourceContext* context, | 210 content::ResourceContext* context, |
| 210 int render_process_id, | 211 int render_process_id, |
| 211 bool is_guest, | 212 bool is_guest, |
| 212 int opener_id, | 213 int opener_id, |
| 213 bool* no_javascript_access) OVERRIDE; | 214 bool* no_javascript_access) OVERRIDE; |
| 214 virtual std::string GetWorkerProcessTitle( | 215 virtual std::string GetWorkerProcessTitle( |
| 215 const GURL& url, content::ResourceContext* context) OVERRIDE; | 216 const GURL& url, content::ResourceContext* context) OVERRIDE; |
| 216 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 217 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 #endif | 282 #endif |
| 282 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> | 283 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> |
| 283 permissions_policy_delegate_; | 284 permissions_policy_delegate_; |
| 284 | 285 |
| 285 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 286 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 286 }; | 287 }; |
| 287 | 288 |
| 288 } // namespace chrome | 289 } // namespace chrome |
| 289 | 290 |
| 290 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 291 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |