| 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_GDATA_DRIVE_FUNCTION_REMOVE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FUNCTION_REMOVE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FUNCTION_REMOVE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FUNCTION_REMOVE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "chrome/browser/chromeos/gdata/drive_resource_metadata.h" | 11 #include "chrome/browser/chromeos/gdata/drive_resource_metadata.h" |
| 12 #include "chrome/browser/chromeos/gdata/gdata_errorcode.h" | 12 #include "chrome/browser/google_apis/gdata_errorcode.h" |
| 13 | 13 |
| 14 class FilePath; | 14 class FilePath; |
| 15 class GURL; | 15 class GURL; |
| 16 | 16 |
| 17 namespace gdata { | 17 namespace gdata { |
| 18 | 18 |
| 19 class DriveCache; | 19 class DriveCache; |
| 20 class DriveEntryProto; | 20 class DriveEntryProto; |
| 21 class DriveFileSystem; | 21 class DriveFileSystem; |
| 22 class DriveServiceInterface; | 22 class DriveServiceInterface; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 // Note: This should remain the last member so it'll be destroyed and | 64 // Note: This should remain the last member so it'll be destroyed and |
| 65 // invalidate the weak pointers before any other members are destroyed. | 65 // invalidate the weak pointers before any other members are destroyed. |
| 66 base::WeakPtrFactory<DriveFunctionRemove> weak_ptr_factory_; | 66 base::WeakPtrFactory<DriveFunctionRemove> weak_ptr_factory_; |
| 67 | 67 |
| 68 DISALLOW_COPY_AND_ASSIGN(DriveFunctionRemove); | 68 DISALLOW_COPY_AND_ASSIGN(DriveFunctionRemove); |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace gdata | 71 } // namespace gdata |
| 72 | 72 |
| 73 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FUNCTION_REMOVE_H_ | 73 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_FUNCTION_REMOVE_H_ |
| OLD | NEW |