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 COMPONENTS_DRIVE_SERVICE_FAKE_DRIVE_SERVICE_H_ | 5 #ifndef COMPONENTS_DRIVE_SERVICE_FAKE_DRIVE_SERVICE_H_ |
6 #define COMPONENTS_DRIVE_SERVICE_FAKE_DRIVE_SERVICE_H_ | 6 #define COMPONENTS_DRIVE_SERVICE_FAKE_DRIVE_SERVICE_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/observer_list.h" |
14 #include "base/threading/thread_checker.h" | 15 #include "base/threading/thread_checker.h" |
15 #include "components/drive/service/drive_service_interface.h" | 16 #include "components/drive/service/drive_service_interface.h" |
16 | 17 |
17 namespace base { | 18 namespace base { |
18 class DictionaryValue; | 19 class DictionaryValue; |
19 } | 20 } |
20 | 21 |
21 namespace google_apis { | 22 namespace google_apis { |
22 class AboutResource; | 23 class AboutResource; |
23 class ChangeResource; | 24 class ChangeResource; |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 base::ObserverList<ChangeObserver> change_observers_; | 405 base::ObserverList<ChangeObserver> change_observers_; |
405 | 406 |
406 base::WeakPtrFactory<FakeDriveService> weak_ptr_factory_; | 407 base::WeakPtrFactory<FakeDriveService> weak_ptr_factory_; |
407 | 408 |
408 DISALLOW_COPY_AND_ASSIGN(FakeDriveService); | 409 DISALLOW_COPY_AND_ASSIGN(FakeDriveService); |
409 }; | 410 }; |
410 | 411 |
411 } // namespace drive | 412 } // namespace drive |
412 | 413 |
413 #endif // COMPONENTS_DRIVE_SERVICE_FAKE_DRIVE_SERVICE_H_ | 414 #endif // COMPONENTS_DRIVE_SERVICE_FAKE_DRIVE_SERVICE_H_ |
OLD | NEW |