diff options
author | jamescook <jamescook@chromium.org> | 2015-02-17 15:19:52 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-17 23:20:41 +0000 |
commit | 4dec2928f6227fa8ec9b3381deeb15c15d6ab320 (patch) | |
tree | 996e53942cd68c5c8371157806a33c5389bfd472 /extensions/shell/common | |
parent | a8a9e2cd46440abd315cc876a8f6740ded878a0b (diff) | |
download | chromium_src-4dec2928f6227fa8ec9b3381deeb15c15d6ab320.zip chromium_src-4dec2928f6227fa8ec9b3381deeb15c15d6ab320.tar.gz chromium_src-4dec2928f6227fa8ec9b3381deeb15c15d6ab320.tar.bz2 |
cros: Remove shell.gcd app_shell API and D-Bus wrapper for privetd
Nothing uses this API and the API is the only user of the privetd bindings.
BUG=458724
TEST=compiles, chromeos_unittests, app_shell_unittests
Review URL: https://codereview.chromium.org/925893003
Cr-Commit-Position: refs/heads/master@{#316698}
Diffstat (limited to 'extensions/shell/common')
-rw-r--r-- | extensions/shell/common/api/schemas.gypi | 1 | ||||
-rw-r--r-- | extensions/shell/common/api/shell_gcd.idl | 24 |
2 files changed, 0 insertions, 25 deletions
diff --git a/extensions/shell/common/api/schemas.gypi b/extensions/shell/common/api/schemas.gypi index 201628b..f257f9b 100644 --- a/extensions/shell/common/api/schemas.gypi +++ b/extensions/shell/common/api/schemas.gypi @@ -14,7 +14,6 @@ ], # Chrome OS specific APIs. 'chromeos_schema_files': [ - 'shell_gcd.idl', ], 'chromium_code': 1, diff --git a/extensions/shell/common/api/shell_gcd.idl b/extensions/shell/common/api/shell_gcd.idl deleted file mode 100644 index 65c80300..0000000 --- a/extensions/shell/common/api/shell_gcd.idl +++ /dev/null @@ -1,24 +0,0 @@ -// 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. - -// Setup related functions for a Google Cloud Devices (GCD) target device -// running on Chrome OS Core. The actual bootstrapping and GCD registration is -// handled by the privetd and buffet system daemons. -// -// TODO(jamescook): This API exists only for manual testing of GCD in app_shell. -// Delete it when GCD setup is integrated into OOBE. -namespace shell.gcd { - - callback PingCallback = void(boolean success); - callback StateCallback = void(DOMString state); - - interface Functions { - // Attempts to ping the daemon via D-Bus. - static void ping(PingCallback callback); - - // Returns the Wi-Fi bootstrap state. Return values are found in - // platform2/privetd/dbus_bindings/org.chromium.privetd.Manager.xml. - static void getWiFiBootstrapState(StateCallback callback); - }; -}; |