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

Unified Diff: chrome/browser/extensions/api/webcam_private/webcam_private_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: 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.cc
diff --git a/chrome/browser/extensions/api/webcam_private/webcam_private_api.cc b/chrome/browser/extensions/api/webcam_private/webcam_private_api.cc
index f956ba4a11d4f056906d3fec1168d3f802cca9c6..d75a78275f107e1c58ba2b5892fce72187b0db8a 100644
--- a/chrome/browser/extensions/api/webcam_private/webcam_private_api.cc
+++ b/chrome/browser/extensions/api/webcam_private/webcam_private_api.cc
@@ -14,7 +14,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_));
@@ -31,7 +31,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_));
@@ -48,7 +48,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