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

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

Issue 2408483002: [Extensions] Convert some ChromeSyncExtensionFunctions (Closed)
Patch Set: lazyboy's Created 4 years, 2 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 0ec3e0352ac31037ce48c3f91e20b2c8c872d43a..e5aab5e2b1945df33bef34ca69d7b48dd9c96ca8 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
@@ -72,7 +72,7 @@ class FileSystemProviderInternalUnmountRequestedSuccessFunction
protected:
~FileSystemProviderInternalUnmountRequestedSuccessFunction() override {}
- bool RunWhenValid() override;
+ ResponseAction Run() override;
};
class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
@@ -84,7 +84,7 @@ class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
protected:
~FileSystemProviderInternalGetMetadataRequestedSuccessFunction() override {}
- bool RunWhenValid() override;
+ ResponseAction Run() override;
};
class FileSystemProviderInternalGetActionsRequestedSuccessFunction
@@ -96,7 +96,7 @@ class FileSystemProviderInternalGetActionsRequestedSuccessFunction
protected:
~FileSystemProviderInternalGetActionsRequestedSuccessFunction() override {}
- bool RunWhenValid() override;
+ ResponseAction Run() override;
};
class FileSystemProviderInternalReadDirectoryRequestedSuccessFunction
@@ -108,7 +108,7 @@ class FileSystemProviderInternalReadDirectoryRequestedSuccessFunction
protected:
~FileSystemProviderInternalReadDirectoryRequestedSuccessFunction() override {}
- bool RunWhenValid() override;
+ ResponseAction Run() override;
};
class FileSystemProviderInternalReadFileRequestedSuccessFunction
@@ -120,7 +120,7 @@ class FileSystemProviderInternalReadFileRequestedSuccessFunction
protected:
~FileSystemProviderInternalReadFileRequestedSuccessFunction() override {}
- bool RunWhenValid() override;
+ ResponseAction Run() override;
};
class FileSystemProviderInternalOperationRequestedSuccessFunction
@@ -132,7 +132,7 @@ class FileSystemProviderInternalOperationRequestedSuccessFunction
protected:
~FileSystemProviderInternalOperationRequestedSuccessFunction() override {}
- bool RunWhenValid() override;
+ ResponseAction Run() override;
};
class FileSystemProviderInternalOperationRequestedErrorFunction
@@ -144,7 +144,7 @@ class FileSystemProviderInternalOperationRequestedErrorFunction
protected:
~FileSystemProviderInternalOperationRequestedErrorFunction() override {}
- bool RunWhenValid() override;
+ ResponseAction Run() override;
};
} // namespace extensions
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698