| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_PERMISSIONS_PERMISSION_REQUEST_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_MANAGER_H_ |
| 6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_MANAGER_H_ | 6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_MANAGER_H_ |
| 7 | 7 |
| 8 #include <unordered_map> | 8 #include <unordered_map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
| 14 #include "chrome/browser/ui/website_settings/permission_prompt.h" | 14 #include "chrome/browser/ui/permission_bubble/permission_prompt.h" |
| 15 #include "content/public/browser/web_contents_observer.h" | 15 #include "content/public/browser/web_contents_observer.h" |
| 16 #include "content/public/browser/web_contents_user_data.h" | 16 #include "content/public/browser/web_contents_user_data.h" |
| 17 | 17 |
| 18 class PermissionRequest; | 18 class PermissionRequest; |
| 19 | 19 |
| 20 namespace safe_browsing { | 20 namespace safe_browsing { |
| 21 class PermissionReporterBrowserTest; | 21 class PermissionReporterBrowserTest; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace test { | 24 namespace test { |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 // Whether each of the requests in |requests_| is accepted by the user. | 205 // Whether each of the requests in |requests_| is accepted by the user. |
| 206 std::vector<bool> accept_states_; | 206 std::vector<bool> accept_states_; |
| 207 | 207 |
| 208 base::ObserverList<Observer> observer_list_; | 208 base::ObserverList<Observer> observer_list_; |
| 209 AutoResponseType auto_response_for_test_; | 209 AutoResponseType auto_response_for_test_; |
| 210 | 210 |
| 211 base::WeakPtrFactory<PermissionRequestManager> weak_factory_; | 211 base::WeakPtrFactory<PermissionRequestManager> weak_factory_; |
| 212 }; | 212 }; |
| 213 | 213 |
| 214 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_MANAGER_H_ | 214 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_REQUEST_MANAGER_H_ |
| OLD | NEW |