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

Unified Diff: chrome/browser/extensions/api/file_system/file_system_api.cc

Issue 252653002: Rename (Chrome)SyncExtensionFunction::RunImpl to RunSync so that the RunImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bookmarks 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/extensions/api/file_system/file_system_api.cc
diff --git a/chrome/browser/extensions/api/file_system/file_system_api.cc b/chrome/browser/extensions/api/file_system/file_system_api.cc
index cff70ff082229109922d4cdd1b604298691af0e5..cafcb0ecdfb575325b661e81129ba3fe81e87b08 100644
--- a/chrome/browser/extensions/api/file_system/file_system_api.cc
+++ b/chrome/browser/extensions/api/file_system/file_system_api.cc
@@ -259,7 +259,7 @@ std::vector<base::FilePath> GetGrayListedDirectories() {
} // namespace file_system_api
-bool FileSystemGetDisplayPathFunction::RunImpl() {
+bool FileSystemGetDisplayPathFunction::RunSync() {
std::string filesystem_name;
std::string filesystem_path;
EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &filesystem_name));
@@ -402,7 +402,7 @@ void FileSystemGetWritableEntryFunction::SetIsDirectoryOnFileThread() {
}
}
-bool FileSystemIsWritableEntryFunction::RunImpl() {
+bool FileSystemIsWritableEntryFunction::RunSync() {
std::string filesystem_name;
std::string filesystem_path;
EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &filesystem_name));
@@ -949,7 +949,7 @@ void FileSystemRetainEntryFunction::SetIsDirectoryOnFileThread() {
is_directory_ = base::DirectoryExists(path_);
}
-bool FileSystemIsRestorableFunction::RunImpl() {
+bool FileSystemIsRestorableFunction::RunSync() {
std::string entry_id;
EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &entry_id));
SetResult(new base::FundamentalValue(SavedFilesService::Get(

Powered by Google App Engine
This is Rietveld 408576698