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

Side by Side Diff: chrome/browser/sync/test/test_http_bridge_factory.cc

Issue 7828055: Move sync test code out of chrome/test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' 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/test/sync/test_http_bridge_factory.h" 5 #include "chrome/browser/sync/test/test_http_bridge_factory.h"
6 6
7 namespace browser_sync { 7 namespace browser_sync {
8 8
9 bool TestHttpBridge::MakeSynchronousPost(int* os_error_code, 9 bool TestHttpBridge::MakeSynchronousPost(int* os_error_code,
10 int* response_code) { 10 int* response_code) {
11 return false; 11 return false;
12 } 12 }
13 13
14 int TestHttpBridge::GetResponseContentLength() const { 14 int TestHttpBridge::GetResponseContentLength() const {
15 return 0; 15 return 0;
(...skipping 17 matching lines...) Expand all
33 33
34 sync_api::HttpPostProviderInterface* TestHttpBridgeFactory::Create() { 34 sync_api::HttpPostProviderInterface* TestHttpBridgeFactory::Create() {
35 return new TestHttpBridge(); 35 return new TestHttpBridge();
36 } 36 }
37 37
38 void TestHttpBridgeFactory::Destroy(sync_api::HttpPostProviderInterface* http) { 38 void TestHttpBridgeFactory::Destroy(sync_api::HttpPostProviderInterface* http) {
39 delete http; 39 delete http;
40 } 40 }
41 41
42 } // namespace browser_sync 42 } // namespace browser_sync
OLDNEW
« no previous file with comments | « chrome/browser/sync/test/test_http_bridge_factory.h ('k') | chrome/browser/sync/test_profile_sync_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698