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

Side by Side Diff: components/browser_sync/browser/profile_sync_service.cc

Issue 1546143002: Switch to standard integer types in components/, part 1 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browser_sync/browser/profile_sync_service.h" 5 #include "components/browser_sync/browser/profile_sync_service.h"
6 6
7 #include <stddef.h>
8
7 #include <cstddef> 9 #include <cstddef>
8 #include <map> 10 #include <map>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/basictypes.h"
12 #include "base/bind.h" 13 #include "base/bind.h"
13 #include "base/bind_helpers.h" 14 #include "base/bind_helpers.h"
14 #include "base/callback.h" 15 #include "base/callback.h"
15 #include "base/command_line.h" 16 #include "base/command_line.h"
16 #include "base/compiler_specific.h" 17 #include "base/compiler_specific.h"
17 #include "base/files/file_util.h" 18 #include "base/files/file_util.h"
18 #include "base/logging.h" 19 #include "base/logging.h"
20 #include "base/macros.h"
19 #include "base/memory/ref_counted.h" 21 #include "base/memory/ref_counted.h"
20 #include "base/metrics/histogram.h" 22 #include "base/metrics/histogram.h"
21 #include "base/prefs/json_pref_store.h" 23 #include "base/prefs/json_pref_store.h"
22 #include "base/profiler/scoped_tracker.h" 24 #include "base/profiler/scoped_tracker.h"
23 #include "base/single_thread_task_runner.h" 25 #include "base/single_thread_task_runner.h"
24 #include "base/strings/string16.h" 26 #include "base/strings/string16.h"
25 #include "base/strings/stringprintf.h" 27 #include "base/strings/stringprintf.h"
26 #include "base/thread_task_runner_handle.h" 28 #include "base/thread_task_runner_handle.h"
27 #include "base/threading/thread_restrictions.h" 29 #include "base/threading/thread_restrictions.h"
28 #include "base/time/time.h" 30 #include "base/time/time.h"
(...skipping 2715 matching lines...) Expand 10 before | Expand all | Expand 10 after
2744 } 2746 }
2745 2747
2746 std::string ProfileSyncService::unrecoverable_error_message() const { 2748 std::string ProfileSyncService::unrecoverable_error_message() const {
2747 return unrecoverable_error_message_; 2749 return unrecoverable_error_message_;
2748 } 2750 }
2749 2751
2750 tracked_objects::Location ProfileSyncService::unrecoverable_error_location() 2752 tracked_objects::Location ProfileSyncService::unrecoverable_error_location()
2751 const { 2753 const {
2752 return unrecoverable_error_location_; 2754 return unrecoverable_error_location_;
2753 } 2755 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698