| 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_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/linked_ptr.h" | 15 #include "base/memory/linked_ptr.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "chrome/browser/chromeos/platform_keys/key_permissions.h" | 17 #include "chrome/browser/chromeos/platform_keys/key_permissions.h" |
| 18 #include "chrome/browser/chromeos/platform_keys/platform_keys.h" | 18 #include "chrome/browser/chromeos/platform_keys/platform_keys.h" |
| 19 #include "components/keyed_service/core/keyed_service.h" | 19 #include "components/keyed_service/core/keyed_service.h" |
| 20 | 20 |
| 21 class PrefService; | 21 class PrefService; |
| 22 | 22 |
| 23 namespace base { | |
| 24 class ListValue; | |
| 25 class Value; | |
| 26 } | |
| 27 | |
| 28 namespace content { | 23 namespace content { |
| 29 class BrowserContext; | 24 class BrowserContext; |
| 30 class WebContents; | 25 class WebContents; |
| 31 } | 26 } |
| 32 | 27 |
| 33 namespace extensions { | 28 namespace extensions { |
| 34 class StateStore; | 29 class StateStore; |
| 35 } | 30 } |
| 36 | 31 |
| 37 namespace net { | 32 namespace net { |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 std::unique_ptr<SelectDelegate> select_delegate_; | 216 std::unique_ptr<SelectDelegate> select_delegate_; |
| 222 std::queue<linked_ptr<Task>> tasks_; | 217 std::queue<linked_ptr<Task>> tasks_; |
| 223 base::WeakPtrFactory<PlatformKeysService> weak_factory_; | 218 base::WeakPtrFactory<PlatformKeysService> weak_factory_; |
| 224 | 219 |
| 225 DISALLOW_COPY_AND_ASSIGN(PlatformKeysService); | 220 DISALLOW_COPY_AND_ASSIGN(PlatformKeysService); |
| 226 }; | 221 }; |
| 227 | 222 |
| 228 } // namespace chromeos | 223 } // namespace chromeos |
| 229 | 224 |
| 230 #endif // CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_H_ | 225 #endif // CHROME_BROWSER_CHROMEOS_PLATFORM_KEYS_PLATFORM_KEYS_SERVICE_H_ |
| OLD | NEW |