diff options
author | chron@google.com <chron@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 20:44:52 +0000 |
---|---|---|
committer | chron@google.com <chron@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 20:44:52 +0000 |
commit | 7462646e2e740d7d5b1a848a524e6620047a6b34 (patch) | |
tree | 45a7d4366e80dd603077f8c886e10c0eed7957ba /chrome/test/sync/test_http_bridge_factory.h | |
parent | 86b423f4321ba469cf8eb15edd27cc6f2bf29ae2 (diff) | |
download | chromium_src-7462646e2e740d7d5b1a848a524e6620047a6b34.zip chromium_src-7462646e2e740d7d5b1a848a524e6620047a6b34.tar.gz chromium_src-7462646e2e740d7d5b1a848a524e6620047a6b34.tar.bz2 |
Add support for the Update-Client-Auth header to sync. Add a mutex to the auth token in ServerConnectionManager.
TEST=manually tested using fiddler2 script.
BUG=35321
Review URL: http://codereview.chromium.org/605010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39259 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/sync/test_http_bridge_factory.h')
-rwxr-xr-x[-rw-r--r--] | chrome/test/sync/test_http_bridge_factory.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/test/sync/test_http_bridge_factory.h b/chrome/test/sync/test_http_bridge_factory.h index 21f24d7..a9fc0b4 100644..100755 --- a/chrome/test/sync/test_http_bridge_factory.h +++ b/chrome/test/sync/test_http_bridge_factory.h @@ -46,6 +46,10 @@ class TestHttpBridge : public sync_api::HttpPostProviderInterface { virtual const char* GetResponseContent() const { return 0; } + + virtual const std::string GetResponseHeaderValue(const std::string &) const { + return std::string(); + } }; class TestHttpBridgeFactory : public sync_api::HttpPostProviderFactory { |