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

Side by Side Diff: chrome/browser/sync_file_system/drive_backend/sync_engine_context.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 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 #include "chrome/browser/sync_file_system/drive_backend/sync_engine_context.h" 5 #include "chrome/browser/sync_file_system/drive_backend/sync_engine_context.h"
6 6
7 #include "base/basictypes.h"
8 #include "base/memory/ref_counted.h" 7 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
10 #include "base/sequenced_task_runner.h" 9 #include "base/sequenced_task_runner.h"
11 #include "base/single_thread_task_runner.h" 10 #include "base/single_thread_task_runner.h"
12 #include "chrome/browser/sync_file_system/drive_backend/metadata_database.h" 11 #include "chrome/browser/sync_file_system/drive_backend/metadata_database.h"
13 #include "chrome/browser/sync_file_system/remote_change_processor.h" 12 #include "chrome/browser/sync_file_system/remote_change_processor.h"
14 #include "chrome/browser/sync_file_system/task_logger.h" 13 #include "chrome/browser/sync_file_system/task_logger.h"
15 #include "components/drive/drive_uploader.h" 14 #include "components/drive/drive_uploader.h"
16 #include "components/drive/service/drive_service_interface.h" 15 #include "components/drive/service/drive_service_interface.h"
17 16
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 DCHECK(remote_change_processor); 97 DCHECK(remote_change_processor);
99 remote_change_processor_ = remote_change_processor; 98 remote_change_processor_ = remote_change_processor;
100 } 99 }
101 100
102 void SyncEngineContext::DetachFromSequence() { 101 void SyncEngineContext::DetachFromSequence() {
103 sequence_checker_.DetachFromSequence(); 102 sequence_checker_.DetachFromSequence();
104 } 103 }
105 104
106 } // namespace drive_backend 105 } // namespace drive_backend
107 } // namespace sync_file_system 106 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698