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

Side by Side Diff: components/variations/variations_request_scheduler.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 (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 #include "components/variations/variations_request_scheduler.h" 5 #include "components/variations/variations_request_scheduler.h"
6 6
7 #include <stddef.h>
8
7 #include "base/strings/string_number_conversions.h" 9 #include "base/strings/string_number_conversions.h"
10 #include "build/build_config.h"
8 #include "components/variations/variations_associated_data.h" 11 #include "components/variations/variations_associated_data.h"
9 12
10 namespace variations { 13 namespace variations {
11 14
12 VariationsRequestScheduler::VariationsRequestScheduler( 15 VariationsRequestScheduler::VariationsRequestScheduler(
13 const base::Closure& task) : task_(task) { 16 const base::Closure& task) : task_(task) {
14 } 17 }
15 18
16 VariationsRequestScheduler::~VariationsRequestScheduler() { 19 VariationsRequestScheduler::~VariationsRequestScheduler() {
17 } 20 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 #if !defined(OS_ANDROID) && !defined(OS_IOS) 64 #if !defined(OS_ANDROID) && !defined(OS_IOS)
62 // static 65 // static
63 VariationsRequestScheduler* VariationsRequestScheduler::Create( 66 VariationsRequestScheduler* VariationsRequestScheduler::Create(
64 const base::Closure& task, 67 const base::Closure& task,
65 PrefService* local_state) { 68 PrefService* local_state) {
66 return new VariationsRequestScheduler(task); 69 return new VariationsRequestScheduler(task);
67 } 70 }
68 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) 71 #endif // !defined(OS_ANDROID) && !defined(OS_IOS)
69 72
70 } // namespace variations 73 } // namespace variations
OLDNEW
« no previous file with comments | « components/variations/variations_request_scheduler.h ('k') | components/variations/variations_request_scheduler_mobile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698