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

Side by Side Diff: extensions/browser/updater/update_service.h

Issue 1909773002: Convert //extensions/browser 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 EXTENSIONS_BROWSER_UPDATER_UPDATE_SERVICE_H_ 5 #ifndef EXTENSIONS_BROWSER_UPDATER_UPDATE_SERVICE_H_
6 #define EXTENSIONS_BROWSER_UPDATER_UPDATE_SERVICE_H_ 6 #define EXTENSIONS_BROWSER_UPDATER_UPDATE_SERVICE_H_
7 7
8 #include <memory>
8 #include <string> 9 #include <string>
9 #include <vector> 10 #include <vector>
10 11
11 #include "base/callback.h" 12 #include "base/callback.h"
12 #include "base/macros.h" 13 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "components/keyed_service/core/keyed_service.h" 14 #include "components/keyed_service/core/keyed_service.h"
15 15
16 namespace base { 16 namespace base {
17 class Version; 17 class Version;
18 } 18 }
19 19
20 namespace content { 20 namespace content {
21 class BrowserContext; 21 class BrowserContext;
22 } 22 }
23 23
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 scoped_refptr<update_client::UpdateClient> update_client_; 62 scoped_refptr<update_client::UpdateClient> update_client_;
63 scoped_refptr<UpdateDataProvider> update_data_provider_; 63 scoped_refptr<UpdateDataProvider> update_data_provider_;
64 64
65 DISALLOW_COPY_AND_ASSIGN(UpdateService); 65 DISALLOW_COPY_AND_ASSIGN(UpdateService);
66 }; 66 };
67 67
68 } // namespace extensions 68 } // namespace extensions
69 69
70 #endif // EXTENSIONS_BROWSER_UPDATER_UPDATE_SERVICE_H_ 70 #endif // EXTENSIONS_BROWSER_UPDATER_UPDATE_SERVICE_H_
OLDNEW
« no previous file with comments | « extensions/browser/updater/safe_manifest_parser.h ('k') | extensions/browser/updater/update_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698