| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROMEOS_DRIVE_TEST_UTIL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_TEST_UTIL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_TEST_UTIL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_TEST_UTIL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "chrome/browser/chromeos/drive/file_cache.h" | 10 #include "chrome/browser/chromeos/drive/file_cache.h" |
| 11 #include "chrome/browser/google_apis/test_util.h" | 11 #include "google_apis/drive/test_util.h" |
| 12 #include "net/base/completion_callback.h" | 12 #include "net/base/completion_callback.h" |
| 13 #include "net/base/io_buffer.h" | 13 #include "net/base/io_buffer.h" |
| 14 #include "net/base/network_change_notifier.h" | 14 #include "net/base/network_change_notifier.h" |
| 15 #include "net/base/test_completion_callback.h" | 15 #include "net/base/test_completion_callback.h" |
| 16 | 16 |
| 17 class PrefRegistrySimple; | 17 class PrefRegistrySimple; |
| 18 | 18 |
| 19 namespace net { | 19 namespace net { |
| 20 class IOBuffer; | 20 class IOBuffer; |
| 21 } // namespace net | 21 } // namespace net |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 virtual ConnectionType GetCurrentConnectionType() const OVERRIDE; | 83 virtual ConnectionType GetCurrentConnectionType() const OVERRIDE; |
| 84 | 84 |
| 85 private: | 85 private: |
| 86 net::NetworkChangeNotifier::ConnectionType type_; | 86 net::NetworkChangeNotifier::ConnectionType type_; |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 } // namespace test_util | 89 } // namespace test_util |
| 90 } // namespace drive | 90 } // namespace drive |
| 91 | 91 |
| 92 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_TEST_UTIL_H_ | 92 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_TEST_UTIL_H_ |
| OLD | NEW |