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

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

Issue 2910473005: Deprecate NonThreadSafe in net/ in favor of SequenceChecker/ThreadChecker. (Closed)
Patch Set: Fix chromecast compile Created 3 years, 7 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_DRIVE_API_SERVICE_H_ 5 #ifndef COMPONENTS_DRIVE_SERVICE_DRIVE_API_SERVICE_H_
6 #define COMPONENTS_DRIVE_SERVICE_DRIVE_API_SERVICE_H_ 6 #define COMPONENTS_DRIVE_SERVICE_DRIVE_API_SERVICE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <string> 11 #include <string>
12 12
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
16 #include "base/observer_list.h" 16 #include "base/observer_list.h"
17 #include "base/threading/non_thread_safe.h"
17 #include "base/threading/thread_checker.h" 18 #include "base/threading/thread_checker.h"
18 #include "components/drive/service/drive_service_interface.h" 19 #include "components/drive/service/drive_service_interface.h"
19 #include "google_apis/drive/auth_service_interface.h" 20 #include "google_apis/drive/auth_service_interface.h"
20 #include "google_apis/drive/auth_service_observer.h" 21 #include "google_apis/drive/auth_service_observer.h"
21 #include "google_apis/drive/drive_api_url_generator.h" 22 #include "google_apis/drive/drive_api_url_generator.h"
22 #include "net/traffic_annotation/network_traffic_annotation.h" 23 #include "net/traffic_annotation/network_traffic_annotation.h"
23 24
24 class GURL; 25 class GURL;
25 class OAuth2TokenService; 26 class OAuth2TokenService;
26 27
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 google_apis::DriveApiUrlGenerator url_generator_; 275 google_apis::DriveApiUrlGenerator url_generator_;
275 const std::string custom_user_agent_; 276 const std::string custom_user_agent_;
276 const net::NetworkTrafficAnnotationTag traffic_annotation_; 277 const net::NetworkTrafficAnnotationTag traffic_annotation_;
277 278
278 DISALLOW_COPY_AND_ASSIGN(DriveAPIService); 279 DISALLOW_COPY_AND_ASSIGN(DriveAPIService);
279 }; 280 };
280 281
281 } // namespace drive 282 } // namespace drive
282 283
283 #endif // COMPONENTS_DRIVE_SERVICE_DRIVE_API_SERVICE_H_ 284 #endif // COMPONENTS_DRIVE_SERVICE_DRIVE_API_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698