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

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

Issue 10913184: Move basic operation components for Drive API to chrome/browser/google_apis directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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_FILE_WRITE_HELPER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_FILE_WRITE_HELPER_H_
6 #define CHROME_BROWSER_CHROMEOS_GDATA_FILE_WRITE_HELPER_H_ 6 #define CHROME_BROWSER_CHROMEOS_GDATA_FILE_WRITE_HELPER_H_
7 7
8 #include "base/memory/weak_ptr.h" 8 #include "base/memory/weak_ptr.h"
9 #include "chrome/browser/chromeos/gdata/drive_file_system_interface.h" 9 #include "chrome/browser/chromeos/gdata/drive_file_system_interface.h"
10 #include "chrome/browser/chromeos/gdata/gdata_errorcode.h" 10 #include "chrome/browser/google_apis/gdata_errorcode.h"
11 11
12 class FilePath; 12 class FilePath;
13 13
14 namespace gdata { 14 namespace gdata {
15 15
16 // This class provides higher level operations for writing to Drive files over 16 // This class provides higher level operations for writing to Drive files over
17 // DriveFileSystemInterface. 17 // DriveFileSystemInterface.
18 class FileWriteHelper { 18 class FileWriteHelper {
19 public: 19 public:
20 explicit FileWriteHelper(DriveFileSystemInterface* file_system); 20 explicit FileWriteHelper(DriveFileSystemInterface* file_system);
(...skipping 30 matching lines...) Expand all
51 // Note: This should remain the last member so it'll be destroyed and 51 // Note: This should remain the last member so it'll be destroyed and
52 // invalidate its weak pointers before any other members are destroyed. 52 // invalidate its weak pointers before any other members are destroyed.
53 base::WeakPtrFactory<FileWriteHelper> weak_ptr_factory_; 53 base::WeakPtrFactory<FileWriteHelper> weak_ptr_factory_;
54 54
55 DISALLOW_COPY_AND_ASSIGN(FileWriteHelper); 55 DISALLOW_COPY_AND_ASSIGN(FileWriteHelper);
56 }; 56 };
57 57
58 } // namespace gdata 58 } // namespace gdata
59 59
60 #endif // CHROME_BROWSER_CHROMEOS_GDATA_FILE_WRITE_HELPER_H_ 60 #endif // CHROME_BROWSER_CHROMEOS_GDATA_FILE_WRITE_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/gdata/drive_uploader.h ('k') | chrome/browser/chromeos/gdata/gdata_contacts_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698