| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_QUEUE_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_PERMISSIONS_PERMISSION_QUEUE_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_QUEUE_CONTROLLER_H_ | 6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_QUEUE_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/macros.h" |
| 9 #include "components/content_settings/core/common/content_settings.h" | 10 #include "components/content_settings/core/common/content_settings.h" |
| 10 #include "components/content_settings/core/common/content_settings_types.h" | 11 #include "components/content_settings/core/common/content_settings_types.h" |
| 11 #include "content/public/browser/notification_observer.h" | 12 #include "content/public/browser/notification_observer.h" |
| 12 #include "content/public/browser/notification_registrar.h" | 13 #include "content/public/browser/notification_registrar.h" |
| 13 #include "content/public/browser/permission_type.h" | 14 #include "content/public/browser/permission_type.h" |
| 14 | 15 |
| 15 class GURL; | 16 class GURL; |
| 16 class PermissionRequestID; | 17 class PermissionRequestID; |
| 17 class InfoBarService; | 18 class InfoBarService; |
| 18 class Profile; | 19 class Profile; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 Profile* const profile_; | 92 Profile* const profile_; |
| 92 content::PermissionType permission_type_; | 93 content::PermissionType permission_type_; |
| 93 ContentSettingsType content_settings_type_; | 94 ContentSettingsType content_settings_type_; |
| 94 PendingInfobarRequests pending_infobar_requests_; | 95 PendingInfobarRequests pending_infobar_requests_; |
| 95 bool in_shutdown_; | 96 bool in_shutdown_; |
| 96 | 97 |
| 97 DISALLOW_COPY_AND_ASSIGN(PermissionQueueController); | 98 DISALLOW_COPY_AND_ASSIGN(PermissionQueueController); |
| 98 }; | 99 }; |
| 99 | 100 |
| 100 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_QUEUE_CONTROLLER_H_ | 101 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_QUEUE_CONTROLLER_H_ |
| OLD | NEW |