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

Unified Diff: chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h

Issue 257493004: [fsp] Refactor handling operations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed tests. Created 6 years, 8 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/file_system_provider/fake_provided_file_system.h
diff --git a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
index a77c7fcf9e4425f710d8660bc4abc383d0d4202c..60a9f639af9d9a0350cec347bda975ccca95e2d8 100644
--- a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
+++ b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
@@ -28,7 +28,7 @@ class FakeProvidedFileSystem : public ProvidedFileSystemInterface {
virtual ~FakeProvidedFileSystem();
// ProvidedFileSystemInterface overrides.
- virtual bool RequestUnmount(
+ virtual void RequestUnmount(
const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const OVERRIDE;
virtual RequestManager* GetRequestManager() OVERRIDE;
@@ -41,6 +41,7 @@ class FakeProvidedFileSystem : public ProvidedFileSystemInterface {
private:
ProvidedFileSystemInfo file_system_info_;
+
DISALLOW_COPY_AND_ASSIGN(FakeProvidedFileSystem);
};

Powered by Google App Engine
This is Rietveld 408576698