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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_misc.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/chromeos/extensions/file_manager/private_api_misc.cc
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.cc b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.cc
index 6e5057501c8b94c46dc3e2e99fec30dbabb51f52..da77c4242c454e5e65c0e418ad67f4ac2cbce891 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.cc
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.cc
@@ -102,7 +102,7 @@ GetLoggedInProfileInfoList(content::WebContents* contents) {
}
} // namespace
-bool FileBrowserPrivateLogoutUserForReauthenticationFunction::RunImpl() {
+bool FileBrowserPrivateLogoutUserForReauthenticationFunction::RunSync() {
chromeos::User* user =
chromeos::UserManager::Get()->GetUserByProfile(GetProfile());
if (user) {
@@ -115,7 +115,7 @@ bool FileBrowserPrivateLogoutUserForReauthenticationFunction::RunImpl() {
return true;
}
-bool FileBrowserPrivateGetPreferencesFunction::RunImpl() {
+bool FileBrowserPrivateGetPreferencesFunction::RunSync() {
api::file_browser_private::Preferences result;
const PrefService* const service = GetProfile()->GetPrefs();
@@ -140,7 +140,7 @@ bool FileBrowserPrivateGetPreferencesFunction::RunImpl() {
return true;
}
-bool FileBrowserPrivateSetPreferencesFunction::RunImpl() {
+bool FileBrowserPrivateSetPreferencesFunction::RunSync() {
using extensions::api::file_browser_private::SetPreferences::Params;
const scoped_ptr<Params> params(Params::Create(*args_));
EXTENSION_FUNCTION_VALIDATE(params);
@@ -233,7 +233,7 @@ void FileBrowserPrivateZipSelectionFunction::OnZipDone(bool success) {
Release();
}
-bool FileBrowserPrivateZoomFunction::RunImpl() {
+bool FileBrowserPrivateZoomFunction::RunSync() {
using extensions::api::file_browser_private::Zoom::Params;
const scoped_ptr<Params> params(Params::Create(*args_));
EXTENSION_FUNCTION_VALIDATE(params);
@@ -370,7 +370,7 @@ void FileBrowserPrivateRequestWebStoreAccessTokenFunction::OnAccessTokenFetched(
}
}
-bool FileBrowserPrivateGetProfilesFunction::RunImpl() {
+bool FileBrowserPrivateGetProfilesFunction::RunSync() {
const std::vector<linked_ptr<api::file_browser_private::ProfileInfo> >&
profiles = GetLoggedInProfileInfoList(GetAssociatedWebContents());
@@ -392,7 +392,7 @@ bool FileBrowserPrivateGetProfilesFunction::RunImpl() {
return true;
}
-bool FileBrowserPrivateVisitDesktopFunction::RunImpl() {
+bool FileBrowserPrivateVisitDesktopFunction::RunSync() {
using api::file_browser_private::VisitDesktop::Params;
const scoped_ptr<Params> params(Params::Create(*args_));
const std::vector<linked_ptr<api::file_browser_private::ProfileInfo> >&

Powered by Google App Engine
This is Rietveld 408576698