| Index: chrome/browser/extensions/api/gcd_private/gcd_private_api.cc
|
| diff --git a/chrome/browser/extensions/api/gcd_private/gcd_private_api.cc b/chrome/browser/extensions/api/gcd_private/gcd_private_api.cc
|
| index 6345965c542b586e09f081ae3819e43846d188c1..041ad9b0e98e4e33ca31843efebfd64472c07f0c 100644
|
| --- a/chrome/browser/extensions/api/gcd_private/gcd_private_api.cc
|
| +++ b/chrome/browser/extensions/api/gcd_private/gcd_private_api.cc
|
| @@ -148,6 +148,18 @@ void GcdPrivateGetCloudDeviceListFunction::CheckListingDone() {
|
| Release();
|
| }
|
|
|
| +GcdPrivateQueryForNewLocalDevicesFunction::
|
| + GcdPrivateQueryForNewLocalDevicesFunction() {
|
| +}
|
| +
|
| +GcdPrivateQueryForNewLocalDevicesFunction::
|
| + ~GcdPrivateQueryForNewLocalDevicesFunction() {
|
| +}
|
| +
|
| +bool GcdPrivateQueryForNewLocalDevicesFunction::RunAsync() {
|
| + return false;
|
| +}
|
| +
|
| GcdPrivateStartSetupFunction::GcdPrivateStartSetupFunction() {
|
| }
|
|
|
| @@ -158,23 +170,23 @@ bool GcdPrivateStartSetupFunction::RunAsync() {
|
| return false;
|
| }
|
|
|
| -GcdPrivateSetWiFiNetworksFunction::GcdPrivateSetWiFiNetworksFunction() {
|
| +GcdPrivateSetWiFiNetworkFunction::GcdPrivateSetWiFiNetworkFunction() {
|
| }
|
|
|
| -GcdPrivateSetWiFiNetworksFunction::~GcdPrivateSetWiFiNetworksFunction() {
|
| +GcdPrivateSetWiFiNetworkFunction::~GcdPrivateSetWiFiNetworkFunction() {
|
| }
|
|
|
| -bool GcdPrivateSetWiFiNetworksFunction::RunAsync() {
|
| +bool GcdPrivateSetWiFiNetworkFunction::RunAsync() {
|
| return false;
|
| }
|
|
|
| -GcdPrivateSetWiFiCredentialsFunction::GcdPrivateSetWiFiCredentialsFunction() {
|
| +GcdPrivateSetWiFiPasswordFunction::GcdPrivateSetWiFiPasswordFunction() {
|
| }
|
|
|
| -GcdPrivateSetWiFiCredentialsFunction::~GcdPrivateSetWiFiCredentialsFunction() {
|
| +GcdPrivateSetWiFiPasswordFunction::~GcdPrivateSetWiFiPasswordFunction() {
|
| }
|
|
|
| -bool GcdPrivateSetWiFiCredentialsFunction::RunAsync() {
|
| +bool GcdPrivateSetWiFiPasswordFunction::RunAsync() {
|
| return false;
|
| }
|
|
|
| @@ -198,4 +210,56 @@ bool GcdPrivateStopSetupFunction::RunAsync() {
|
| return false;
|
| }
|
|
|
| +GcdPrivateGetCommandDefinitionsFunction::
|
| + GcdPrivateGetCommandDefinitionsFunction() {
|
| +}
|
| +
|
| +GcdPrivateGetCommandDefinitionsFunction::
|
| + ~GcdPrivateGetCommandDefinitionsFunction() {
|
| +}
|
| +
|
| +bool GcdPrivateGetCommandDefinitionsFunction::RunAsync() {
|
| + return false;
|
| +}
|
| +
|
| +GcdPrivateInsertCommandFunction::GcdPrivateInsertCommandFunction() {
|
| +}
|
| +
|
| +GcdPrivateInsertCommandFunction::~GcdPrivateInsertCommandFunction() {
|
| +}
|
| +
|
| +bool GcdPrivateInsertCommandFunction::RunAsync() {
|
| + return false;
|
| +}
|
| +
|
| +GcdPrivateGetCommandFunction::GcdPrivateGetCommandFunction() {
|
| +}
|
| +
|
| +GcdPrivateGetCommandFunction::~GcdPrivateGetCommandFunction() {
|
| +}
|
| +
|
| +bool GcdPrivateGetCommandFunction::RunAsync() {
|
| + return false;
|
| +}
|
| +
|
| +GcdPrivateCancelCommandFunction::GcdPrivateCancelCommandFunction() {
|
| +}
|
| +
|
| +GcdPrivateCancelCommandFunction::~GcdPrivateCancelCommandFunction() {
|
| +}
|
| +
|
| +bool GcdPrivateCancelCommandFunction::RunAsync() {
|
| + return false;
|
| +}
|
| +
|
| +GcdPrivateGetCommandsListFunction::GcdPrivateGetCommandsListFunction() {
|
| +}
|
| +
|
| +GcdPrivateGetCommandsListFunction::~GcdPrivateGetCommandsListFunction() {
|
| +}
|
| +
|
| +bool GcdPrivateGetCommandsListFunction::RunAsync() {
|
| + return false;
|
| +}
|
| +
|
| } // namespace extensions
|
|
|