Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(926)

Side by Side Diff: components/drive/service/fake_drive_service.h

Issue 2333923004: Extracting NetLog inner classes into their own classes. (Closed)
Patch Set: Some nit fixes and better, impl-agnostic naming of net_log_parameters_callback_typedef.h -> net/log… Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698