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

Side by Side Diff: chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.h

Issue 527773003: Add GetURLForBrowserTab method to the external file system backend. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed. Created 6 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_DRIVE_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_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 "chrome/browser/chromeos/fileapi/file_system_backend_delegate.h" 10 #include "chrome/browser/chromeos/fileapi/file_system_backend_delegate.h"
(...skipping 23 matching lines...) Expand all
34 const storage::FileSystemURL& url, 34 const storage::FileSystemURL& url,
35 int64 offset, 35 int64 offset,
36 const base::Time& expected_modification_time, 36 const base::Time& expected_modification_time,
37 storage::FileSystemContext* context) OVERRIDE; 37 storage::FileSystemContext* context) OVERRIDE;
38 virtual scoped_ptr<storage::FileStreamWriter> CreateFileStreamWriter( 38 virtual scoped_ptr<storage::FileStreamWriter> CreateFileStreamWriter(
39 const storage::FileSystemURL& url, 39 const storage::FileSystemURL& url,
40 int64 offset, 40 int64 offset,
41 storage::FileSystemContext* context) OVERRIDE; 41 storage::FileSystemContext* context) OVERRIDE;
42 virtual storage::WatcherManager* GetWatcherManager( 42 virtual storage::WatcherManager* GetWatcherManager(
43 const storage::FileSystemURL& url) OVERRIDE; 43 const storage::FileSystemURL& url) OVERRIDE;
44 virtual void GetRedirectURLForContents(
45 const storage::FileSystemURL& url,
46 const storage::URLCallback& callback) OVERRIDE;
44 47
45 private: 48 private:
46 scoped_ptr<storage::AsyncFileUtil> async_file_util_; 49 scoped_ptr<storage::AsyncFileUtil> async_file_util_;
47 50
48 DISALLOW_COPY_AND_ASSIGN(FileSystemBackendDelegate); 51 DISALLOW_COPY_AND_ASSIGN(FileSystemBackendDelegate);
49 }; 52 };
50 53
51 } // namespace drive 54 } // namespace drive
52 55
53 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_ 56 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_FILE_SYSTEM_BACKEND_DELEGATE_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698