| Index: extensions/shell/browser/api/shell_gcd/shell_gcd_api.cc
|
| diff --git a/extensions/shell/browser/api/shell_gcd/shell_gcd_api.cc b/extensions/shell/browser/api/shell_gcd/shell_gcd_api.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..235ef948eb7bd52d76f9b2e3d219c18a05790e96
|
| --- /dev/null
|
| +++ b/extensions/shell/browser/api/shell_gcd/shell_gcd_api.cc
|
| @@ -0,0 +1,27 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "extensions/shell/browser/api/shell_gcd/shell_gcd_api.h"
|
| +
|
| +#include "base/values.h"
|
| +#include "extensions/shell/common/api/shell_gcd.h"
|
| +
|
| +namespace shell_gcd = extensions::shell::api::shell_gcd;
|
| +
|
| +namespace extensions {
|
| +
|
| +ShellGcdGetBootstrapStatusFunction::ShellGcdGetBootstrapStatusFunction() {
|
| +}
|
| +
|
| +ShellGcdGetBootstrapStatusFunction::~ShellGcdGetBootstrapStatusFunction() {
|
| +}
|
| +
|
| +ExtensionFunction::ResponseAction ShellGcdGetBootstrapStatusFunction::Run() {
|
| + // TODO(jamescook): Implement this.
|
| + shell_gcd::BootstrapStatus status = shell_gcd::BOOTSTRAP_STATUS_COMPLETED;
|
| + return RespondNow(
|
| + ArgumentList(shell_gcd::GetBootstrapStatus::Results::Create(status)));
|
| +}
|
| +
|
| +} // namespace extensions
|
|
|