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

Side by Side Diff: chrome/browser/sync/internal_api/syncapi_server_connection_manager.cc

Issue 7719011: Move some files from sync/engine to internal_api (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Refresh the diff and remove unintended change Created 9 years, 3 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/net/syncapi_server_connection_manager.h" 5 #include "chrome/browser/sync/internal_api/syncapi_server_connection_manager.h"
6 6
7 #include "chrome/browser/sync/engine/http_post_provider_factory.h" 7 #include "chrome/browser/sync/internal_api/http_post_provider_factory.h"
8 #include "chrome/browser/sync/engine/http_post_provider_interface.h" 8 #include "chrome/browser/sync/internal_api/http_post_provider_interface.h"
9 #include "chrome/browser/sync/util/oauth.h" 9 #include "chrome/browser/sync/util/oauth.h"
10 #include "chrome/common/net/http_return.h" 10 #include "chrome/common/net/http_return.h"
11 11
12 using browser_sync::HttpResponse; 12 using browser_sync::HttpResponse;
13 13
14 namespace sync_api { 14 namespace sync_api {
15 15
16 SyncAPIBridgedPost::SyncAPIBridgedPost( 16 SyncAPIBridgedPost::SyncAPIBridgedPost(
17 browser_sync::ServerConnectionManager* scm, 17 browser_sync::ServerConnectionManager* scm,
18 HttpPostProviderFactory* factory) 18 HttpPostProviderFactory* factory)
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 } 95 }
96 96
97 SyncAPIServerConnectionManager::~SyncAPIServerConnectionManager() {} 97 SyncAPIServerConnectionManager::~SyncAPIServerConnectionManager() {}
98 98
99 browser_sync::ServerConnectionManager::Post* 99 browser_sync::ServerConnectionManager::Post*
100 SyncAPIServerConnectionManager::MakePost() { 100 SyncAPIServerConnectionManager::MakePost() {
101 return new SyncAPIBridgedPost(this, post_provider_factory_.get()); 101 return new SyncAPIBridgedPost(this, post_provider_factory_.get());
102 } 102 }
103 103
104 } // namespace sync_api 104 } // namespace sync_api
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698