Index: chrome/browser/chromeos/file_system_provider/operations/configure.h |
diff --git a/chrome/browser/chromeos/file_system_provider/operations/unmount.h b/chrome/browser/chromeos/file_system_provider/operations/configure.h |
similarity index 74% |
copy from chrome/browser/chromeos/file_system_provider/operations/unmount.h |
copy to chrome/browser/chromeos/file_system_provider/operations/configure.h |
index 4b966afb6f61cd03643c1de84a74d4441e92edcf..e57fa0c5c57d1831386c646d27d115253378df7e 100644 |
--- a/chrome/browser/chromeos/file_system_provider/operations/unmount.h |
+++ b/chrome/browser/chromeos/file_system_provider/operations/configure.h |
@@ -2,8 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_UNMOUNT_H_ |
-#define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_UNMOUNT_H_ |
+#ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CONFIGURE_H_ |
+#define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CONFIGURE_H_ |
#include "base/files/file.h" |
#include "base/memory/scoped_ptr.h" |
@@ -25,14 +25,14 @@ class ProvidedFileSystemInfo; |
namespace operations { |
-// Bridge between fileManagerPrivate's unmount operation and providing |
-// extension's unmount request. Created per request. |
-class Unmount : public Operation { |
+// Bridge between fileManagerPrivate's configure operation and providing |
+// extension's configure request. Created per request. |
+class Configure : public Operation { |
public: |
- Unmount(extensions::EventRouter* event_router, |
- const ProvidedFileSystemInfo& file_system_info, |
- const storage::AsyncFileUtil::StatusCallback& callback); |
- ~Unmount() override; |
+ Configure(extensions::EventRouter* event_router, |
+ const ProvidedFileSystemInfo& file_system_info, |
+ const storage::AsyncFileUtil::StatusCallback& callback); |
+ ~Configure() override; |
// Operation overrides. |
bool Execute(int request_id) override; |
@@ -46,11 +46,11 @@ class Unmount : public Operation { |
private: |
const storage::AsyncFileUtil::StatusCallback callback_; |
- DISALLOW_COPY_AND_ASSIGN(Unmount); |
+ DISALLOW_COPY_AND_ASSIGN(Configure); |
}; |
} // namespace operations |
} // namespace file_system_provider |
} // namespace chromeos |
-#endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_UNMOUNT_H_ |
+#endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CONFIGURE_H_ |