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

Side by Side Diff: chromeos/timezone/timezone_resolver.h

Issue 1852433005: Convert //base to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase after r384946 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 CHROMEOS_TIMEZONE_TIMEZONE_RESOLVER_H_ 5 #ifndef CHROMEOS_TIMEZONE_TIMEZONE_RESOLVER_H_
6 #define CHROMEOS_TIMEZONE_TIMEZONE_RESOLVER_H_ 6 #define CHROMEOS_TIMEZONE_TIMEZONE_RESOLVER_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h"
10 #include "base/threading/thread_checker.h" 11 #include "base/threading/thread_checker.h"
11 #include "chromeos/chromeos_export.h" 12 #include "chromeos/chromeos_export.h"
12 #include "net/url_request/url_request_context_getter.h" 13 #include "net/url_request/url_request_context_getter.h"
13 #include "url/gurl.h" 14 #include "url/gurl.h"
14 15
15 class PrefRegistrySimple; 16 class PrefRegistrySimple;
16 class PrefService; 17 class PrefService;
17 18
18 namespace chromeos { 19 namespace chromeos {
19 20
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 bool send_wifi_data_to_geolocation_api_; 101 bool send_wifi_data_to_geolocation_api_;
101 102
102 base::ThreadChecker thread_checker_; 103 base::ThreadChecker thread_checker_;
103 104
104 DISALLOW_COPY_AND_ASSIGN(TimeZoneResolver); 105 DISALLOW_COPY_AND_ASSIGN(TimeZoneResolver);
105 }; 106 };
106 107
107 } // namespace chromeos 108 } // namespace chromeos
108 109
109 #endif // CHROMEOS_TIMEZONE_TIMEZONE_RESOLVER_H_ 110 #endif // CHROMEOS_TIMEZONE_TIMEZONE_RESOLVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698