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

Side by Side Diff: components/gcm_driver/crypto/gcm_encryption_provider.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 months 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 COMPONENTS_GCM_DRIVER_CRYPTO_GCM_ENCRYPTION_PROVIDER_H_ 5 #ifndef COMPONENTS_GCM_DRIVER_CRYPTO_GCM_ENCRYPTION_PROVIDER_H_
6 #define COMPONENTS_GCM_DRIVER_CRYPTO_GCM_ENCRYPTION_PROVIDER_H_ 6 #define COMPONENTS_GCM_DRIVER_CRYPTO_GCM_ENCRYPTION_PROVIDER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9
9 #include <string> 10 #include <string>
10 11
11 #include "base/callback_forward.h" 12 #include "base/callback_forward.h"
12 #include "base/gtest_prod_util.h" 13 #include "base/gtest_prod_util.h"
13 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
15 17
16 namespace base { 18 namespace base {
17 class FilePath; 19 class FilePath;
18 class SequencedTaskRunner; 20 class SequencedTaskRunner;
19 } 21 }
20 22
21 namespace gcm { 23 namespace gcm {
22 24
23 class GCMKeyStore; 25 class GCMKeyStore;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 scoped_ptr<GCMKeyStore> key_store_; 125 scoped_ptr<GCMKeyStore> key_store_;
124 126
125 base::WeakPtrFactory<GCMEncryptionProvider> weak_ptr_factory_; 127 base::WeakPtrFactory<GCMEncryptionProvider> weak_ptr_factory_;
126 128
127 DISALLOW_COPY_AND_ASSIGN(GCMEncryptionProvider); 129 DISALLOW_COPY_AND_ASSIGN(GCMEncryptionProvider);
128 }; 130 };
129 131
130 } // namespace gcm 132 } // namespace gcm
131 133
132 #endif // COMPONENTS_GCM_DRIVER_CRYPTO_GCM_ENCRYPTION_PROVIDER_H_ 134 #endif // COMPONENTS_GCM_DRIVER_CRYPTO_GCM_ENCRYPTION_PROVIDER_H_
OLDNEW
« no previous file with comments | « components/favicon/core/favicon_driver_impl.h ('k') | components/gcm_driver/gcm_delayed_task_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698