Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(582)

Side by Side Diff: chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 // TODO(dkrahn): Clean up this private API once all clients have been migrated 5 // TODO(dkrahn): Clean up this private API once all clients have been migrated
6 // to use the public API. crbug.com/588339. 6 // to use the public API. crbug.com/588339.
7 7
8 #ifndef CHROME_BROWSER_EXTENSIONS_API_ENTERPRISE_PLATFORM_KEYS_PRIVATE_ENTERPRIS E_PLATFORM_KEYS_PRIVATE_API_H__ 8 #ifndef CHROME_BROWSER_EXTENSIONS_API_ENTERPRISE_PLATFORM_KEYS_PRIVATE_ENTERPRIS E_PLATFORM_KEYS_PRIVATE_API_H__
9 #define CHROME_BROWSER_EXTENSIONS_API_ENTERPRISE_PLATFORM_KEYS_PRIVATE_ENTERPRIS E_PLATFORM_KEYS_PRIVATE_API_H__ 9 #define CHROME_BROWSER_EXTENSIONS_API_ENTERPRISE_PLATFORM_KEYS_PRIVATE_ENTERPRIS E_PLATFORM_KEYS_PRIVATE_API_H__
10 10
11 #include <memory> 11 #include <memory>
12 #include <string> 12 #include <string>
13 13
14 #include "base/callback.h" 14 #include "base/callback.h"
15 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.h"
16 #include "chrome/common/extensions/api/enterprise_platform_keys_private.h" 16 #include "chrome/common/extensions/api/enterprise_platform_keys_private.h"
17 #include "chromeos/attestation/attestation_constants.h" 17 #include "chromeos/attestation/attestation_constants.h"
18 #include "chromeos/attestation/attestation_flow.h" 18 #include "chromeos/attestation/attestation_flow.h"
19 #include "chromeos/dbus/cryptohome_client.h" 19 #include "chromeos/dbus/cryptohome_client.h"
20 #include "chromeos/dbus/dbus_method_call_status.h" 20 #include "chromeos/dbus/dbus_method_call_status.h"
21 #include "components/signin/core/account_id/account_id.h" 21 #include "components/signin/core/account_id/account_id.h"
22 #include "extensions/browser/extension_function.h" 22 #include "extensions/browser/extension_function.h"
23 #include "third_party/cros_system_api/dbus/service_constants.h" 23 #include "third_party/cros_system_api/dbus/service_constants.h"
24 24
25 class PrefService;
26 class Profile; 25 class Profile;
27 26
28 namespace chromeos { 27 namespace chromeos {
29 class CryptohomeClient; 28 class CryptohomeClient;
30 class InstallAttributes; 29 class InstallAttributes;
31 } 30 }
32 31
33 namespace cryptohome { 32 namespace cryptohome {
34 class AsyncMethodCaller; 33 class AsyncMethodCaller;
35 } 34 }
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 EPKPChallengeUserKey* impl_; 287 EPKPChallengeUserKey* impl_;
289 288
290 DECLARE_EXTENSION_FUNCTION( 289 DECLARE_EXTENSION_FUNCTION(
291 "enterprise.platformKeysPrivate.challengeUserKey", 290 "enterprise.platformKeysPrivate.challengeUserKey",
292 ENTERPRISE_PLATFORMKEYSPRIVATE_CHALLENGEUSERKEY); 291 ENTERPRISE_PLATFORMKEYSPRIVATE_CHALLENGEUSERKEY);
293 }; 292 };
294 293
295 } // namespace extensions 294 } // namespace extensions
296 295
297 #endif // CHROME_BROWSER_EXTENSIONS_API_ENTERPRISE_PLATFORM_KEYS_PRIVATE_ENTERP RISE_PLATFORM_KEYS_PRIVATE_API_H__ 296 #endif // CHROME_BROWSER_EXTENSIONS_API_ENTERPRISE_PLATFORM_KEYS_PRIVATE_ENTERP RISE_PLATFORM_KEYS_PRIVATE_API_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698