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

Unified Diff: chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h

Issue 257333002: Drive extension functions from ExtensionFunction::Run. The (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comment 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/extensions/file_system_provider/file_system_provider_api.h
diff --git a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
index 728513c3ae0f29e25ebf192c2d117f7ca02be777..b762701a09950defae0560e0f94d3cc44db2b4a6 100644
--- a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
+++ b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
@@ -39,7 +39,7 @@ class FileSystemProviderInternalUnmountRequestedSuccessFunction
protected:
virtual ~FileSystemProviderInternalUnmountRequestedSuccessFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunWhenValid() OVERRIDE;
};
class FileSystemProviderInternalUnmountRequestedErrorFunction
@@ -51,7 +51,7 @@ class FileSystemProviderInternalUnmountRequestedErrorFunction
protected:
virtual ~FileSystemProviderInternalUnmountRequestedErrorFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunWhenValid() OVERRIDE;
};
class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
@@ -63,7 +63,7 @@ class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
protected:
virtual ~FileSystemProviderInternalGetMetadataRequestedSuccessFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunWhenValid() OVERRIDE;
};
class FileSystemProviderInternalGetMetadataRequestedErrorFunction
@@ -75,7 +75,7 @@ class FileSystemProviderInternalGetMetadataRequestedErrorFunction
protected:
virtual ~FileSystemProviderInternalGetMetadataRequestedErrorFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunWhenValid() OVERRIDE;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698