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

Side by Side Diff: chrome/browser/chromeos/gdata/drive_file_system.h

Issue 10920091: Move Drive API files to google_apis directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix dependency problem Created 8 years, 3 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 | Annotate | Revision Log
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 CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_H_
6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_H_ 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
15 #include "base/observer_list.h" 15 #include "base/observer_list.h"
16 #include "base/platform_file.h" 16 #include "base/platform_file.h"
17 #include "base/timer.h" 17 #include "base/timer.h"
18 #include "chrome/browser/api/prefs/pref_change_registrar.h" 18 #include "chrome/browser/api/prefs/pref_change_registrar.h"
19 #include "chrome/browser/chromeos/gdata/drive_cache.h" 19 #include "chrome/browser/chromeos/gdata/drive_cache.h"
20 #include "chrome/browser/chromeos/gdata/drive_file_system_interface.h" 20 #include "chrome/browser/chromeos/gdata/drive_file_system_interface.h"
21 #include "chrome/browser/chromeos/gdata/drive_resource_metadata.h" 21 #include "chrome/browser/chromeos/gdata/drive_resource_metadata.h"
22 #include "chrome/browser/chromeos/gdata/gdata_errorcode.h"
23 #include "chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.h" 22 #include "chrome/browser/chromeos/gdata/gdata_wapi_feed_loader.h"
24 #include "chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.h" 23 #include "chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.h"
24 #include "chrome/browser/google_api/gdata_errorcode.h"
25 #include "content/public/browser/notification_observer.h" 25 #include "content/public/browser/notification_observer.h"
26 26
27 namespace base { 27 namespace base {
28 class SequencedTaskRunner; 28 class SequencedTaskRunner;
29 } 29 }
30 30
31 namespace gdata { 31 namespace gdata {
32 32
33 class DriveFunctionRemove; 33 class DriveFunctionRemove;
34 class DriveServiceInterface; 34 class DriveServiceInterface;
(...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after
947 // invalidate the weak pointers before any other members are destroyed. 947 // invalidate the weak pointers before any other members are destroyed.
948 base::WeakPtrFactory<DriveFileSystem> ui_weak_ptr_factory_; 948 base::WeakPtrFactory<DriveFileSystem> ui_weak_ptr_factory_;
949 // Unlike other classes, we need this as we need this to redirect a task 949 // Unlike other classes, we need this as we need this to redirect a task
950 // from IO thread to UI thread. 950 // from IO thread to UI thread.
951 base::WeakPtr<DriveFileSystem> ui_weak_ptr_; 951 base::WeakPtr<DriveFileSystem> ui_weak_ptr_;
952 }; 952 };
953 953
954 } // namespace gdata 954 } // namespace gdata
955 955
956 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_H_ 956 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FILE_SYSTEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698