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

Side by Side Diff: chrome/browser/sync/engine/model_changing_syncer_command.cc

Issue 5741001: Even more virtual method deinlining. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase (windows) Created 10 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/engine/model_changing_syncer_command.h" 5 #include "chrome/browser/sync/engine/model_changing_syncer_command.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "chrome/browser/sync/engine/model_safe_worker.h" 8 #include "chrome/browser/sync/engine/model_safe_worker.h"
9 #include "chrome/browser/sync/sessions/status_controller.h" 9 #include "chrome/browser/sync/sessions/status_controller.h"
10 #include "chrome/browser/sync/sessions/sync_session.h" 10 #include "chrome/browser/sync/sessions/sync_session.h"
(...skipping 11 matching lines...) Expand all
22 ModelSafeGroup group = worker->GetModelSafeGroup(); 22 ModelSafeGroup group = worker->GetModelSafeGroup();
23 23
24 sessions::StatusController* status = work_session_->status_controller(); 24 sessions::StatusController* status = work_session_->status_controller();
25 sessions::ScopedModelSafeGroupRestriction r(status, group); 25 sessions::ScopedModelSafeGroupRestriction r(status, group);
26 scoped_ptr<Callback0::Type> c(NewCallback(this, 26 scoped_ptr<Callback0::Type> c(NewCallback(this,
27 &ModelChangingSyncerCommand::StartChangingModel)); 27 &ModelChangingSyncerCommand::StartChangingModel));
28 worker->DoWorkAndWaitUntilDone(c.get()); 28 worker->DoWorkAndWaitUntilDone(c.get());
29 } 29 }
30 } 30 }
31 31
32 bool ModelChangingSyncerCommand::ModelNeutralExecuteImpl(
33 sessions::SyncSession* session) {
34 return true;
35 }
36
32 } // namespace browser_sync 37 } // namespace browser_sync
OLDNEW
« no previous file with comments | « chrome/browser/sync/engine/model_changing_syncer_command.h ('k') | chrome/browser/sync/engine/net/server_connection_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698