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

Unified Diff: chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h

Issue 145973016: Support cross-profile copy between Chrome OS Google Drive folders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix. Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h
diff --git a/chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h b/chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h
index 8b27a5f55cf805396104076d7139d0fb0ab5278e..0d859c97859aec3008e99e7d85eb7b6e748c1db5 100644
--- a/chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h
+++ b/chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h
@@ -9,10 +9,6 @@
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chromeos/fileapi/file_system_backend_delegate.h"
-namespace content {
-class BrowserContext;
-} // namespace content
-
namespace fileapi {
class AsyncFileUtil;
} // namespace fileapi
@@ -23,8 +19,7 @@ namespace drive {
// for Drive file system.
class FileSystemBackendDelegate : public chromeos::FileSystemBackendDelegate {
public:
- // |browser_context| is used to obtain |profile_id_|.
- explicit FileSystemBackendDelegate(content::BrowserContext* browser_context);
+ FileSystemBackendDelegate();
virtual ~FileSystemBackendDelegate();
// FileSystemBackend::Delegate overrides.
@@ -41,8 +36,6 @@ class FileSystemBackendDelegate : public chromeos::FileSystemBackendDelegate {
fileapi::FileSystemContext* context) OVERRIDE;
private:
- // The profile for processing Drive accesses. Should not be NULL.
- void* profile_id_;
scoped_ptr<fileapi::AsyncFileUtil> async_file_util_;
DISALLOW_COPY_AND_ASSIGN(FileSystemBackendDelegate);

Powered by Google App Engine
This is Rietveld 408576698