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 content::WebContents* web_contents, | 187 content::WebContents* web_contents, |
188 int bridge_id, | 188 int bridge_id, |
189 const GURL& requesting_frame, | 189 const GURL& requesting_frame, |
190 bool user_gesture, | 190 bool user_gesture, |
191 const base::Callback<void(bool)>& result_callback) override; | 191 const base::Callback<void(bool)>& result_callback) override; |
192 content::PermissionStatus GetPermissionStatus( | 192 content::PermissionStatus GetPermissionStatus( |
193 content::PermissionType permission, | 193 content::PermissionType permission, |
194 content::BrowserContext* browser_context, | 194 content::BrowserContext* browser_context, |
195 const GURL& requesting_origin, | 195 const GURL& requesting_origin, |
196 const GURL& embedding_origin) override; | 196 const GURL& embedding_origin) override; |
| 197 void ResetPermission( |
| 198 content::PermissionType permission, |
| 199 content::BrowserContext* browser_context, |
| 200 const GURL& requesting_origin, |
| 201 const GURL& embedding_origin) override; |
197 void CancelPermissionRequest(content::PermissionType permission, | 202 void CancelPermissionRequest(content::PermissionType permission, |
198 content::WebContents* web_contents, | 203 content::WebContents* web_contents, |
199 int bridge_id, | 204 int bridge_id, |
200 const GURL& requesting_frame) override; | 205 const GURL& requesting_frame) override; |
201 void RegisterPermissionUsage(content::PermissionType permission, | 206 void RegisterPermissionUsage(content::PermissionType permission, |
202 content::WebContents* web_contents, | 207 content::WebContents* web_contents, |
203 const GURL& frame_url, | 208 const GURL& frame_url, |
204 const GURL& main_frame_url) override; | 209 const GURL& main_frame_url) override; |
205 bool CanCreateWindow(const GURL& opener_url, | 210 bool CanCreateWindow(const GURL& opener_url, |
206 const GURL& opener_top_level_frame_url, | 211 const GURL& opener_top_level_frame_url, |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 336 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
332 | 337 |
333 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 338 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
334 | 339 |
335 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 340 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
336 }; | 341 }; |
337 | 342 |
338 } // namespace chrome | 343 } // namespace chrome |
339 | 344 |
340 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 345 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |