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

Side by Side Diff: sync/engine/directory_commit_contributor.cc

Issue 657783002: Use scoped_ptr::Pass instead of scoped_ptr::PassAs<T>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | sync/engine/get_updates_processor_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "sync/engine/directory_commit_contributor.h" 5 #include "sync/engine/directory_commit_contributor.h"
6 6
7 #include "sync/engine/directory_commit_contribution.h" 7 #include "sync/engine/directory_commit_contribution.h"
8 #include "sync/sessions/directory_type_debug_info_emitter.h" 8 #include "sync/sessions/directory_type_debug_info_emitter.h"
9 9
10 namespace syncer { 10 namespace syncer {
11 11
12 DirectoryCommitContributor::DirectoryCommitContributor( 12 DirectoryCommitContributor::DirectoryCommitContributor(
13 syncable::Directory* dir, 13 syncable::Directory* dir,
14 ModelType type, 14 ModelType type,
15 DirectoryTypeDebugInfoEmitter* debug_info_emitter) 15 DirectoryTypeDebugInfoEmitter* debug_info_emitter)
16 : dir_(dir), 16 : dir_(dir),
17 type_(type), 17 type_(type),
18 debug_info_emitter_(debug_info_emitter) {} 18 debug_info_emitter_(debug_info_emitter) {}
19 19
20 DirectoryCommitContributor::~DirectoryCommitContributor() {} 20 DirectoryCommitContributor::~DirectoryCommitContributor() {}
21 21
22 scoped_ptr<CommitContribution> 22 scoped_ptr<CommitContribution>
23 DirectoryCommitContributor::GetContribution(size_t max_entries) { 23 DirectoryCommitContributor::GetContribution(size_t max_entries) {
24 return DirectoryCommitContribution::Build( 24 return DirectoryCommitContribution::Build(
25 dir_, 25 dir_, type_, max_entries, debug_info_emitter_);
26 type_,
27 max_entries,
28 debug_info_emitter_).PassAs<CommitContribution>();
29 } 26 }
30 27
31 } // namespace syncer 28 } // namespace syncer
OLDNEW
« no previous file with comments | « no previous file | sync/engine/get_updates_processor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698