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

Unified Diff: chrome/browser/extensions/api/webcam_private/webcam_private_api_chromeos.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/webcam_private/webcam_private_api_chromeos.cc
diff --git a/chrome/browser/extensions/api/webcam_private/webcam_private_api_chromeos.cc b/chrome/browser/extensions/api/webcam_private/webcam_private_api_chromeos.cc
index 21b7a1878b69125d0d338d21e1e07d3e27395ac3..1694e2f15f5aaf875332dfcb2747db78c1430822 100644
--- a/chrome/browser/extensions/api/webcam_private/webcam_private_api_chromeos.cc
+++ b/chrome/browser/extensions/api/webcam_private/webcam_private_api_chromeos.cc
@@ -55,7 +55,7 @@ WebcamPrivateSetFunction::WebcamPrivateSetFunction() {
WebcamPrivateSetFunction::~WebcamPrivateSetFunction() {
}
-bool WebcamPrivateSetFunction::RunImpl() {
+bool WebcamPrivateSetFunction::RunSync() {
// Get parameters
scoped_ptr<api::webcam_private::Set::Params> params(
api::webcam_private::Set::Params::Create(*args_));
@@ -92,7 +92,7 @@ WebcamPrivateGetFunction::WebcamPrivateGetFunction() {
WebcamPrivateGetFunction::~WebcamPrivateGetFunction() {
}
-bool WebcamPrivateGetFunction::RunImpl() {
+bool WebcamPrivateGetFunction::RunSync() {
// Get parameters
scoped_ptr<api::webcam_private::Get::Params> params(
api::webcam_private::Get::Params::Create(*args_));
@@ -130,7 +130,7 @@ WebcamPrivateResetFunction::WebcamPrivateResetFunction() {
WebcamPrivateResetFunction::~WebcamPrivateResetFunction() {
}
-bool WebcamPrivateResetFunction::RunImpl() {
+bool WebcamPrivateResetFunction::RunSync() {
// Get parameters
scoped_ptr<api::webcam_private::Reset::Params> params(
api::webcam_private::Reset::Params::Create(*args_));

Powered by Google App Engine
This is Rietveld 408576698