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

Side by Side Diff: components/ownership/owner_key_util.h

Issue 1921923002: Convert //components/[o-t]* from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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 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 COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_H_ 5 #ifndef COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_H_
6 #define COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_H_ 6 #define COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "components/ownership/ownership_export.h" 15 #include "components/ownership/ownership_export.h"
17 #include "crypto/scoped_nss_types.h" 16 #include "crypto/scoped_nss_types.h"
18 17
19 struct PK11SlotInfoStr; 18 struct PK11SlotInfoStr;
20 typedef struct PK11SlotInfoStr PK11SlotInfo; 19 typedef struct PK11SlotInfoStr PK11SlotInfo;
21 20
22 namespace ownership { 21 namespace ownership {
23 22
24 class OwnerKeyUtilTest; 23 class OwnerKeyUtilTest;
25 24
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 protected: 88 protected:
90 virtual ~OwnerKeyUtil() {} 89 virtual ~OwnerKeyUtil() {}
91 90
92 private: 91 private:
93 friend class base::RefCountedThreadSafe<OwnerKeyUtil>; 92 friend class base::RefCountedThreadSafe<OwnerKeyUtil>;
94 }; 93 };
95 94
96 } // namespace ownership 95 } // namespace ownership
97 96
98 #endif // COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_H_ 97 #endif // COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_H_
OLDNEW
« no previous file with comments | « components/ownership/mock_owner_key_util.cc ('k') | components/ownership/owner_settings_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698