| 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_));
|
|
|