| OLD | NEW |
| 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 #ifndef CHROME_BROWSER_SYNC_ENGINE_NET_SYNCAPI_SERVER_CONNECTION_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_INTERNAL_API_SYNCAPI_SERVER_CONNECTION_MANAGER_H_ |
| 6 #define CHROME_BROWSER_SYNC_ENGINE_NET_SYNCAPI_SERVER_CONNECTION_MANAGER_H_ | 6 #define CHROME_BROWSER_SYNC_INTERNAL_API_SYNCAPI_SERVER_CONNECTION_MANAGER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "chrome/browser/sync/engine/net/server_connection_manager.h" | 12 #include "chrome/browser/sync/engine/net/server_connection_manager.h" |
| 13 | 13 |
| 14 namespace sync_api { | 14 namespace sync_api { |
| 15 | 15 |
| 16 class HttpPostProviderFactory; | 16 class HttpPostProviderFactory; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 private: | 58 private: |
| 59 // A factory creating concrete HttpPostProviders for use whenever we need to | 59 // A factory creating concrete HttpPostProviders for use whenever we need to |
| 60 // issue a POST to sync servers. | 60 // issue a POST to sync servers. |
| 61 scoped_ptr<HttpPostProviderFactory> post_provider_factory_; | 61 scoped_ptr<HttpPostProviderFactory> post_provider_factory_; |
| 62 | 62 |
| 63 DISALLOW_COPY_AND_ASSIGN(SyncAPIServerConnectionManager); | 63 DISALLOW_COPY_AND_ASSIGN(SyncAPIServerConnectionManager); |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 } // namespace sync_api | 66 } // namespace sync_api |
| 67 | 67 |
| 68 #endif // CHROME_BROWSER_SYNC_ENGINE_NET_SYNCAPI_SERVER_CONNECTION_MANAGER_H_ | 68 #endif // CHROME_BROWSER_SYNC_INTERNAL_API_SYNCAPI_SERVER_CONNECTION_MANAGER_H_ |
| OLD | NEW |