| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_LOCAL_DISCOVERY_PRIVET_HTTP_IMPL_H_ | 5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_IMPL_H_ |
| 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_IMPL_H_ | 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/file_util.h" | 11 #include "base/files/file_util.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "chrome/browser/local_discovery/privet_http.h" | 14 #include "chrome/browser/local_discovery/privet_http.h" |
| 15 #include "components/cloud_devices/common/cloud_device_description.h" | 15 #include "components/cloud_devices/common/cloud_device_description.h" |
| 16 #include "printing/pdf_render_settings.h" | 16 #include "printing/pdf_render_settings.h" |
| 17 | 17 |
| 18 namespace printing { | 18 namespace printing { |
| 19 struct PwgRasterSettings; | 19 struct PwgRasterSettings; |
| 20 }; | 20 }; |
| 21 | 21 |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 private: | 341 private: |
| 342 PrivetHTTPClient* info_client() { return info_client_.get(); } | 342 PrivetHTTPClient* info_client() { return info_client_.get(); } |
| 343 | 343 |
| 344 scoped_ptr<PrivetHTTPClient> info_client_; | 344 scoped_ptr<PrivetHTTPClient> info_client_; |
| 345 | 345 |
| 346 DISALLOW_COPY_AND_ASSIGN(PrivetV1HTTPClientImpl); | 346 DISALLOW_COPY_AND_ASSIGN(PrivetV1HTTPClientImpl); |
| 347 }; | 347 }; |
| 348 | 348 |
| 349 } // namespace local_discovery | 349 } // namespace local_discovery |
| 350 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_IMPL_H_ | 350 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_IMPL_H_ |
| OLD | NEW |