Commit 0296cb1d authored by Istiaque Ahmed's avatar Istiaque Ahmed Committed by Commit Bot

Remove some incorrect/obsolete reference to AsyncExtensionFunction.

ChromeAsyncExtensionFunction does not derive from
AsyncExtensionFunction, update such references, mostly in comments.

Bug: 829174
Change-Id: Ic48ec85540f00660ecbb58899d501152c1117341
Reviewed-on: https://chromium-review.googlesource.com/1001772
Commit-Queue: Istiaque Ahmed <lazyboy@chromium.org>
Reviewed-by: default avatarDevlin <rdevlin.cronin@chromium.org>
Cr-Commit-Position: refs/heads/master@{#549351}
parent 454e85dc
...@@ -107,7 +107,7 @@ class FileBrowserHandlerInternalSelectFileFunction ...@@ -107,7 +107,7 @@ class FileBrowserHandlerInternalSelectFileFunction
// The class is ref counted, so destructor should not be public. // The class is ref counted, so destructor should not be public.
~FileBrowserHandlerInternalSelectFileFunction() override; ~FileBrowserHandlerInternalSelectFileFunction() override;
// AsyncExtensionFunction implementation. // ChromeAsyncExtensionFunction implementation.
// Runs the extension function implementation. // Runs the extension function implementation.
bool RunAsync() override; bool RunAsync() override;
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
namespace extensions { namespace extensions {
// This class adds a logging feature to AsyncExtensionFunction. Logging is // This class adds a logging feature to ChromeAsyncExtensionFunction. Logging is
// done when sending the response to JavaScript, using drive::util::Log(). // done when sending the response to JavaScript, using drive::util::Log().
// Async API functions of fileManagerPrivate should inherit this class. // Async API functions of fileManagerPrivate should inherit this class.
// //
...@@ -27,7 +27,7 @@ class LoggedAsyncExtensionFunction : public ChromeAsyncExtensionFunction { ...@@ -27,7 +27,7 @@ class LoggedAsyncExtensionFunction : public ChromeAsyncExtensionFunction {
protected: protected:
~LoggedAsyncExtensionFunction() override; ~LoggedAsyncExtensionFunction() override;
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
void OnResponded() override; void OnResponded() override;
// Sets the logging on completion flag. By default, logging is turned off. // Sets the logging on completion flag. By default, logging is turned off.
......
...@@ -28,7 +28,7 @@ class FileManagerPrivateCancelDialogFunction ...@@ -28,7 +28,7 @@ class FileManagerPrivateCancelDialogFunction
protected: protected:
~FileManagerPrivateCancelDialogFunction() override {} ~FileManagerPrivateCancelDialogFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
}; };
...@@ -41,7 +41,7 @@ class FileManagerPrivateSelectFileFunction ...@@ -41,7 +41,7 @@ class FileManagerPrivateSelectFileFunction
protected: protected:
~FileManagerPrivateSelectFileFunction() override {} ~FileManagerPrivateSelectFileFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -61,7 +61,7 @@ class FileManagerPrivateSelectFilesFunction ...@@ -61,7 +61,7 @@ class FileManagerPrivateSelectFilesFunction
protected: protected:
~FileManagerPrivateSelectFilesFunction() override {} ~FileManagerPrivateSelectFilesFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
......
...@@ -70,7 +70,7 @@ class FileManagerPrivateInternalGetEntryPropertiesFunction ...@@ -70,7 +70,7 @@ class FileManagerPrivateInternalGetEntryPropertiesFunction
protected: protected:
~FileManagerPrivateInternalGetEntryPropertiesFunction() override; ~FileManagerPrivateInternalGetEntryPropertiesFunction() override;
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -94,7 +94,7 @@ class FileManagerPrivateInternalPinDriveFileFunction ...@@ -94,7 +94,7 @@ class FileManagerPrivateInternalPinDriveFileFunction
protected: protected:
~FileManagerPrivateInternalPinDriveFileFunction() override {} ~FileManagerPrivateInternalPinDriveFileFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -112,7 +112,7 @@ class FileManagerPrivateInternalCancelFileTransfersFunction ...@@ -112,7 +112,7 @@ class FileManagerPrivateInternalCancelFileTransfersFunction
protected: protected:
~FileManagerPrivateInternalCancelFileTransfersFunction() override {} ~FileManagerPrivateInternalCancelFileTransfersFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
}; };
...@@ -126,7 +126,7 @@ class FileManagerPrivateCancelAllFileTransfersFunction ...@@ -126,7 +126,7 @@ class FileManagerPrivateCancelAllFileTransfersFunction
protected: protected:
~FileManagerPrivateCancelAllFileTransfersFunction() override {} ~FileManagerPrivateCancelAllFileTransfersFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
}; };
...@@ -211,7 +211,7 @@ class FileManagerPrivateRequestAccessTokenFunction ...@@ -211,7 +211,7 @@ class FileManagerPrivateRequestAccessTokenFunction
protected: protected:
~FileManagerPrivateRequestAccessTokenFunction() override {} ~FileManagerPrivateRequestAccessTokenFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
// Callback with a cached auth token (if available) or a fetched one. // Callback with a cached auth token (if available) or a fetched one.
...@@ -229,7 +229,7 @@ class FileManagerPrivateInternalGetShareUrlFunction ...@@ -229,7 +229,7 @@ class FileManagerPrivateInternalGetShareUrlFunction
protected: protected:
~FileManagerPrivateInternalGetShareUrlFunction() override {} ~FileManagerPrivateInternalGetShareUrlFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
// Callback with an url to the sharing dialog as |share_url|, called by // Callback with an url to the sharing dialog as |share_url|, called by
...@@ -265,7 +265,7 @@ class FileManagerPrivateInternalGetDownloadUrlFunction ...@@ -265,7 +265,7 @@ class FileManagerPrivateInternalGetDownloadUrlFunction
protected: protected:
~FileManagerPrivateInternalGetDownloadUrlFunction() override; ~FileManagerPrivateInternalGetDownloadUrlFunction() override;
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
void OnGetResourceEntry(drive::FileError error, void OnGetResourceEntry(drive::FileError error,
......
...@@ -112,7 +112,7 @@ class FileWatchFunctionBase : public LoggedAsyncExtensionFunction { ...@@ -112,7 +112,7 @@ class FileWatchFunctionBase : public LoggedAsyncExtensionFunction {
const storage::FileSystemURL& file_system_url, const storage::FileSystemURL& file_system_url,
base::WeakPtr<file_manager::EventRouter> event_router) = 0; base::WeakPtr<file_manager::EventRouter> event_router) = 0;
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -177,7 +177,7 @@ class FileManagerPrivateGetSizeStatsFunction ...@@ -177,7 +177,7 @@ class FileManagerPrivateGetSizeStatsFunction
protected: protected:
~FileManagerPrivateGetSizeStatsFunction() override {} ~FileManagerPrivateGetSizeStatsFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -206,7 +206,7 @@ class FileManagerPrivateInternalValidatePathNameLengthFunction ...@@ -206,7 +206,7 @@ class FileManagerPrivateInternalValidatePathNameLengthFunction
void OnFilePathLimitRetrieved(size_t current_length, size_t max_length); void OnFilePathLimitRetrieved(size_t current_length, size_t max_length);
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
}; };
...@@ -221,7 +221,7 @@ class FileManagerPrivateFormatVolumeFunction ...@@ -221,7 +221,7 @@ class FileManagerPrivateFormatVolumeFunction
protected: protected:
~FileManagerPrivateFormatVolumeFunction() override {} ~FileManagerPrivateFormatVolumeFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
}; };
...@@ -236,7 +236,7 @@ class FileManagerPrivateRenameVolumeFunction ...@@ -236,7 +236,7 @@ class FileManagerPrivateRenameVolumeFunction
protected: protected:
~FileManagerPrivateRenameVolumeFunction() override {} ~FileManagerPrivateRenameVolumeFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
}; };
...@@ -250,7 +250,7 @@ class FileManagerPrivateInternalStartCopyFunction ...@@ -250,7 +250,7 @@ class FileManagerPrivateInternalStartCopyFunction
protected: protected:
~FileManagerPrivateInternalStartCopyFunction() override {} ~FileManagerPrivateInternalStartCopyFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -278,7 +278,7 @@ class FileManagerPrivateCancelCopyFunction ...@@ -278,7 +278,7 @@ class FileManagerPrivateCancelCopyFunction
protected: protected:
~FileManagerPrivateCancelCopyFunction() override {} ~FileManagerPrivateCancelCopyFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
}; };
...@@ -294,7 +294,7 @@ class FileManagerPrivateInternalResolveIsolatedEntriesFunction ...@@ -294,7 +294,7 @@ class FileManagerPrivateInternalResolveIsolatedEntriesFunction
protected: protected:
~FileManagerPrivateInternalResolveIsolatedEntriesFunction() override {} ~FileManagerPrivateInternalResolveIsolatedEntriesFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -314,7 +314,7 @@ class FileManagerPrivateInternalComputeChecksumFunction ...@@ -314,7 +314,7 @@ class FileManagerPrivateInternalComputeChecksumFunction
protected: protected:
~FileManagerPrivateInternalComputeChecksumFunction() override; ~FileManagerPrivateInternalComputeChecksumFunction() override;
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -334,7 +334,7 @@ class FileManagerPrivateSearchFilesByHashesFunction ...@@ -334,7 +334,7 @@ class FileManagerPrivateSearchFilesByHashesFunction
~FileManagerPrivateSearchFilesByHashesFunction() override {} ~FileManagerPrivateSearchFilesByHashesFunction() override {}
private: private:
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
// Sends a response with |results| to the extension. // Sends a response with |results| to the extension.
...@@ -390,7 +390,7 @@ class FileManagerPrivateInternalGetDirectorySizeFunction ...@@ -390,7 +390,7 @@ class FileManagerPrivateInternalGetDirectorySizeFunction
void OnDirectorySizeRetrieved(int64_t size); void OnDirectorySizeRetrieved(int64_t size);
// AsyncExtensionFunction overrides // ChromeAsyncExtensionFunction overrides
bool RunAsync() override; bool RunAsync() override;
}; };
......
...@@ -95,7 +95,7 @@ class FileManagerPrivateInternalZipSelectionFunction ...@@ -95,7 +95,7 @@ class FileManagerPrivateInternalZipSelectionFunction
protected: protected:
~FileManagerPrivateInternalZipSelectionFunction() override; ~FileManagerPrivateInternalZipSelectionFunction() override;
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
// Receives the result from ZipFileCreator. // Receives the result from ZipFileCreator.
...@@ -129,6 +129,8 @@ class FileManagerPrivateRequestWebStoreAccessTokenFunction ...@@ -129,6 +129,8 @@ class FileManagerPrivateRequestWebStoreAccessTokenFunction
protected: protected:
~FileManagerPrivateRequestWebStoreAccessTokenFunction() override; ~FileManagerPrivateRequestWebStoreAccessTokenFunction() override;
// ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -175,7 +177,7 @@ class FileManagerPrivateInternalGetMimeTypeFunction ...@@ -175,7 +177,7 @@ class FileManagerPrivateInternalGetMimeTypeFunction
protected: protected:
~FileManagerPrivateInternalGetMimeTypeFunction() override; ~FileManagerPrivateInternalGetMimeTypeFunction() override;
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
void OnGetMimeType(const std::string& mimeType); void OnGetMimeType(const std::string& mimeType);
......
...@@ -26,7 +26,7 @@ class FileManagerPrivateAddMountFunction : public LoggedAsyncExtensionFunction { ...@@ -26,7 +26,7 @@ class FileManagerPrivateAddMountFunction : public LoggedAsyncExtensionFunction {
protected: protected:
~FileManagerPrivateAddMountFunction() override {} ~FileManagerPrivateAddMountFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -61,7 +61,7 @@ class FileManagerPrivateRemoveMountFunction ...@@ -61,7 +61,7 @@ class FileManagerPrivateRemoveMountFunction
protected: protected:
~FileManagerPrivateRemoveMountFunction() override {} ~FileManagerPrivateRemoveMountFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
}; };
...@@ -76,7 +76,7 @@ class FileManagerPrivateMarkCacheAsMountedFunction ...@@ -76,7 +76,7 @@ class FileManagerPrivateMarkCacheAsMountedFunction
protected: protected:
~FileManagerPrivateMarkCacheAsMountedFunction() override {} ~FileManagerPrivateMarkCacheAsMountedFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -105,7 +105,7 @@ class FileManagerPrivateGetVolumeMetadataListFunction ...@@ -105,7 +105,7 @@ class FileManagerPrivateGetVolumeMetadataListFunction
protected: protected:
~FileManagerPrivateGetVolumeMetadataListFunction() override {} ~FileManagerPrivateGetVolumeMetadataListFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
}; };
......
...@@ -36,7 +36,7 @@ class FileManagerPrivateInternalExecuteTaskFunction ...@@ -36,7 +36,7 @@ class FileManagerPrivateInternalExecuteTaskFunction
protected: protected:
~FileManagerPrivateInternalExecuteTaskFunction() override {} ~FileManagerPrivateInternalExecuteTaskFunction() override {}
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
...@@ -56,7 +56,7 @@ class FileManagerPrivateInternalGetFileTasksFunction ...@@ -56,7 +56,7 @@ class FileManagerPrivateInternalGetFileTasksFunction
protected: protected:
~FileManagerPrivateInternalGetFileTasksFunction() override; ~FileManagerPrivateInternalGetFileTasksFunction() override;
// AsyncExtensionFunction overrides. // ChromeAsyncExtensionFunction overrides.
bool RunAsync() override; bool RunAsync() override;
private: private:
......
...@@ -45,7 +45,7 @@ class UsersPrivateAddWhitelistedUserFunction ...@@ -45,7 +45,7 @@ class UsersPrivateAddWhitelistedUserFunction
protected: protected:
~UsersPrivateAddWhitelistedUserFunction() override; ~UsersPrivateAddWhitelistedUserFunction() override;
// AsyncExtensionFunction overrides. // UIThreadExtensionFunction overrides.
ResponseAction Run() override; ResponseAction Run() override;
private: private:
......
...@@ -126,7 +126,7 @@ class BookmarksAPI : public BrowserContextKeyedAPI, ...@@ -126,7 +126,7 @@ class BookmarksAPI : public BrowserContextKeyedAPI,
class BookmarksFunction : public ChromeAsyncExtensionFunction, class BookmarksFunction : public ChromeAsyncExtensionFunction,
public bookmarks::BaseBookmarkModelObserver { public bookmarks::BaseBookmarkModelObserver {
public: public:
// AsyncExtensionFunction: // ChromeAsyncExtensionFunction:
bool RunAsync() override; bool RunAsync() override;
protected: protected:
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
namespace extensions { namespace extensions {
AsyncExtensionFunction::ResponseAction ExtensionFunction::ResponseAction
DataReductionProxyClearDataSavingsFunction::Run() { DataReductionProxyClearDataSavingsFunction::Run() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI); DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
data_reduction_proxy::DataReductionProxySettings* settings = data_reduction_proxy::DataReductionProxySettings* settings =
...@@ -27,7 +27,7 @@ DataReductionProxyClearDataSavingsFunction::Run() { ...@@ -27,7 +27,7 @@ DataReductionProxyClearDataSavingsFunction::Run() {
return RespondNow(NoArguments()); return RespondNow(NoArguments());
} }
AsyncExtensionFunction::ResponseAction ExtensionFunction::ResponseAction
DataReductionProxyGetDataUsageFunction::Run() { DataReductionProxyGetDataUsageFunction::Run() {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI); DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
data_reduction_proxy::DataReductionProxySettings* settings = data_reduction_proxy::DataReductionProxySettings* settings =
......
...@@ -22,7 +22,7 @@ class SettingsPrivateSetPrefFunction : public UIThreadExtensionFunction { ...@@ -22,7 +22,7 @@ class SettingsPrivateSetPrefFunction : public UIThreadExtensionFunction {
protected: protected:
~SettingsPrivateSetPrefFunction() override; ~SettingsPrivateSetPrefFunction() override;
// ExtensionFunction overrides. // UIThreadExtensionFunction overrides.
ResponseAction Run() override; ResponseAction Run() override;
DISALLOW_COPY_AND_ASSIGN(SettingsPrivateSetPrefFunction); DISALLOW_COPY_AND_ASSIGN(SettingsPrivateSetPrefFunction);
...@@ -38,7 +38,7 @@ class SettingsPrivateGetAllPrefsFunction : public UIThreadExtensionFunction { ...@@ -38,7 +38,7 @@ class SettingsPrivateGetAllPrefsFunction : public UIThreadExtensionFunction {
protected: protected:
~SettingsPrivateGetAllPrefsFunction() override; ~SettingsPrivateGetAllPrefsFunction() override;
// AsyncExtensionFunction overrides. // UIThreadExtensionFunction overrides.
ResponseAction Run() override; ResponseAction Run() override;
DISALLOW_COPY_AND_ASSIGN(SettingsPrivateGetAllPrefsFunction); DISALLOW_COPY_AND_ASSIGN(SettingsPrivateGetAllPrefsFunction);
...@@ -54,7 +54,7 @@ class SettingsPrivateGetPrefFunction : public UIThreadExtensionFunction { ...@@ -54,7 +54,7 @@ class SettingsPrivateGetPrefFunction : public UIThreadExtensionFunction {
protected: protected:
~SettingsPrivateGetPrefFunction() override; ~SettingsPrivateGetPrefFunction() override;
// AsyncExtensionFunction overrides. // UIThreadExtensionFunction overrides.
ResponseAction Run() override; ResponseAction Run() override;
DISALLOW_COPY_AND_ASSIGN(SettingsPrivateGetPrefFunction); DISALLOW_COPY_AND_ASSIGN(SettingsPrivateGetPrefFunction);
...@@ -71,7 +71,7 @@ class SettingsPrivateGetDefaultZoomFunction ...@@ -71,7 +71,7 @@ class SettingsPrivateGetDefaultZoomFunction
protected: protected:
~SettingsPrivateGetDefaultZoomFunction() override; ~SettingsPrivateGetDefaultZoomFunction() override;
// AsyncExtensionFunction overrides. // UIThreadExtensionFunction overrides.
ResponseAction Run() override; ResponseAction Run() override;
DISALLOW_COPY_AND_ASSIGN(SettingsPrivateGetDefaultZoomFunction); DISALLOW_COPY_AND_ASSIGN(SettingsPrivateGetDefaultZoomFunction);
...@@ -88,7 +88,7 @@ class SettingsPrivateSetDefaultZoomFunction ...@@ -88,7 +88,7 @@ class SettingsPrivateSetDefaultZoomFunction
protected: protected:
~SettingsPrivateSetDefaultZoomFunction() override; ~SettingsPrivateSetDefaultZoomFunction() override;
// AsyncExtensionFunction overrides. // UIThreadExtensionFunction overrides.
ResponseAction Run() override; ResponseAction Run() override;
DISALLOW_COPY_AND_ASSIGN(SettingsPrivateSetDefaultZoomFunction); DISALLOW_COPY_AND_ASSIGN(SettingsPrivateSetDefaultZoomFunction);
......
...@@ -347,7 +347,7 @@ void FeedbackPrivateSendFeedbackFunction::OnCompleted( ...@@ -347,7 +347,7 @@ void FeedbackPrivateSendFeedbackFunction::OnCompleted(
} }
} }
AsyncExtensionFunction::ResponseAction ExtensionFunction::ResponseAction
FeedbackPrivateLogSrtPromptResultFunction::Run() { FeedbackPrivateLogSrtPromptResultFunction::Run() {
std::unique_ptr<feedback_private::LogSrtPromptResult::Params> params( std::unique_ptr<feedback_private::LogSrtPromptResult::Params> params(
feedback_private::LogSrtPromptResult::Params::Create(*args_)); feedback_private::LogSrtPromptResult::Params::Create(*args_));
......
...@@ -144,7 +144,7 @@ class FeedbackPrivateLogSrtPromptResultFunction ...@@ -144,7 +144,7 @@ class FeedbackPrivateLogSrtPromptResultFunction
protected: protected:
~FeedbackPrivateLogSrtPromptResultFunction() override {} ~FeedbackPrivateLogSrtPromptResultFunction() override {}
AsyncExtensionFunction::ResponseAction Run() override; ResponseAction Run() override;
}; };
} // namespace extensions } // namespace extensions
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment