diff options
author | Rahul Chaturvedi <rkc@chromium.org> | 2014-12-04 14:06:24 -0500 |
---|---|---|
committer | Rahul Chaturvedi <rkc@chromium.org> | 2014-12-04 19:07:39 +0000 |
commit | 19de704d2740b353ea43024b7270ddf39ce98ee6 (patch) | |
tree | 7a461161a2912d349060c2a5ce95cca2a88133ea /components/BUILD.gn | |
parent | c0c568c37bd1cfe742902318f597a58f49092651 (diff) | |
download | chromium_src-19de704d2740b353ea43024b7270ddf39ce98ee6.zip chromium_src-19de704d2740b353ea43024b7270ddf39ce98ee6.tar.gz chromium_src-19de704d2740b353ea43024b7270ddf39ce98ee6.tar.bz2 |
Rewrite the CopresenceSocket API.
We've changed the concept of the sockets API to be more of an *endpoints* API
on Android. This CL matches the change. We now only have endpoints that the
API can work with. To make a connection between devices, an app needs to create
a local endpoint, and then connect it to a remote endpoint. The connection can
happen via a 'connect' call (not implemented yet) or via accepting connections.
Currently we only support one local endpoint and have matched the wire protocol
to match Android. Keep in mind this is still completely experimental code with
exactly one user, so things will probably change again quite drastically. This
is why I have *only* implemented the functions we currently need and absolutely
nothing else.
Reviews requested,
/* - xiyuan@
extensions/* - kalman@
components/* - erikwright@ (we're mostly just renaming an existing component)
extension_function_histogram_value.h - isherman@ (deleting old enums)
R=armansito@chromium.org, erikwright@chromium.org, isherman@chromium.org, jar@chromium.org, kalman@chromium.org, mark@chromium.org, xiyuan@chromium.org
BUG=418617
Review URL: https://codereview.chromium.org/771683004
Cr-Commit-Position: refs/heads/master@{#306863}
Diffstat (limited to 'components/BUILD.gn')
-rw-r--r-- | components/BUILD.gn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/BUILD.gn b/components/BUILD.gn index 6816af1..f01dbe9 100644 --- a/components/BUILD.gn +++ b/components/BUILD.gn @@ -27,7 +27,7 @@ group("all_components") { "//components/component_updater", "//components/content_settings/core/browser", "//components/content_settings/core/common", - "//components/copresence_sockets", + "//components/copresence_endpoints", "//components/crash/app", "//components/crash/browser", "//components/crx_file", @@ -119,7 +119,7 @@ group("all_components") { if (is_ios) { deps -= [ "//components/keyed_service/content", - "//components/copresence_sockets", + "//components/copresence_endpoints", ] } |