diff options
author | jamesr <jamesr@chromium.org> | 2014-11-03 17:46:10 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-04 01:46:31 +0000 |
commit | 0f18be91be7c4aa9e55ad020fa5a2408f389a9d1 (patch) | |
tree | 884ce770b6c27bf696e15ece17cfa61c0ba5da19 /extensions/common/mojo | |
parent | 174ab92a101d02bce1301d8fdc8ec15ec5557137 (diff) | |
download | chromium_src-0f18be91be7c4aa9e55ad020fa5a2408f389a9d1.zip chromium_src-0f18be91be7c4aa9e55ad020fa5a2408f389a9d1.tar.gz chromium_src-0f18be91be7c4aa9e55ad020fa5a2408f389a9d1.tar.bz2 |
Update mojo sdk to rev cfc99316100efdfa7d53d83f9e07f1d4d3765c21
Most changes are updates to the mojom syntax for modules.
R=viettrungluu@chromium.org
TBR=jam@chromium.org
Review URL: https://codereview.chromium.org/698883005
Cr-Commit-Position: refs/heads/master@{#302542}
Diffstat (limited to 'extensions/common/mojo')
-rw-r--r-- | extensions/common/mojo/keep_alive.mojom | 4 | ||||
-rw-r--r-- | extensions/common/mojo/stash.mojom | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/extensions/common/mojo/keep_alive.mojom b/extensions/common/mojo/keep_alive.mojom index 75b08b4..9f36ae6 100644 --- a/extensions/common/mojo/keep_alive.mojom +++ b/extensions/common/mojo/keep_alive.mojom @@ -2,11 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -module extensions { +module extensions; // An RAII service for keep alives. While KeepAlive services for an extension // remain, the background page for that extension will remain alive. interface KeepAlive { }; - -} diff --git a/extensions/common/mojo/stash.mojom b/extensions/common/mojo/stash.mojom index 734697b..6cc4908 100644 --- a/extensions/common/mojo/stash.mojom +++ b/extensions/common/mojo/stash.mojom @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -module extensions { +module extensions; // A stashed client object. This contains the serialized bytes and handles, // stored in |data| and |handles|, respectively, of a mojo struct of the @@ -28,5 +28,3 @@ interface StashService { // Returns all stashed objects. RetrieveStash() => (array<StashedObject> stash); }; - -} |