| 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_CHANGE_LIST_LOADER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_CHANGE_LIST_LOADER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_CHANGE_LIST_LOADER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_CHANGE_LIST_LOADER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
| 15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
| 16 #include "chrome/browser/chromeos/drive/file_errors.h" | 16 #include "chrome/browser/chromeos/drive/file_errors.h" |
| 17 #include "google_apis/drive/drive_common_callbacks.h" | 17 #include "google_apis/drive/drive_common_callbacks.h" |
| 18 #include "google_apis/drive/gdata_errorcode.h" | 18 #include "google_apis/drive/gdata_errorcode.h" |
| 19 | 19 |
| 20 class GURL; | 20 class GURL; |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class ScopedClosureRunner; | 23 class ScopedClosureRunner; |
| 24 class SequencedTaskRunner; | 24 class SequencedTaskRunner; |
| 25 class Time; | 25 class Time; |
| 26 } // namespace base | 26 } // namespace base |
| 27 | 27 |
| 28 namespace google_apis { | 28 namespace google_apis { |
| 29 class AboutResource; | 29 class AboutResource; |
| 30 class ResourceList; | |
| 31 } // namespace google_apis | 30 } // namespace google_apis |
| 32 | 31 |
| 33 namespace drive { | 32 namespace drive { |
| 34 | 33 |
| 35 class EventLogger; | 34 class EventLogger; |
| 36 class JobScheduler; | 35 class JobScheduler; |
| 37 class ResourceEntry; | 36 class ResourceEntry; |
| 38 | 37 |
| 39 namespace internal { | 38 namespace internal { |
| 40 | 39 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 // Note: This should remain the last member so it'll be destroyed and | 231 // Note: This should remain the last member so it'll be destroyed and |
| 233 // invalidate its weak pointers before any other members are destroyed. | 232 // invalidate its weak pointers before any other members are destroyed. |
| 234 base::WeakPtrFactory<ChangeListLoader> weak_ptr_factory_; | 233 base::WeakPtrFactory<ChangeListLoader> weak_ptr_factory_; |
| 235 DISALLOW_COPY_AND_ASSIGN(ChangeListLoader); | 234 DISALLOW_COPY_AND_ASSIGN(ChangeListLoader); |
| 236 }; | 235 }; |
| 237 | 236 |
| 238 } // namespace internal | 237 } // namespace internal |
| 239 } // namespace drive | 238 } // namespace drive |
| 240 | 239 |
| 241 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_CHANGE_LIST_LOADER_H_ | 240 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_CHANGE_LIST_LOADER_H_ |
| OLD | NEW |