Index: mojo/services/sharing/public/interfaces/sharing.mojom |
diff --git a/mojo/public/interfaces/network/network_error.mojom b/mojo/services/sharing/public/interfaces/sharing.mojom |
similarity index 68% |
copy from mojo/public/interfaces/network/network_error.mojom |
copy to mojo/services/sharing/public/interfaces/sharing.mojom |
index d1f741d6bb13a8f77e1f6c4f106131665e693259..494b5523e6694c67ce8ebd0c84b46f5fe97cbfbe 100644 |
--- a/mojo/public/interfaces/network/network_error.mojom |
+++ b/mojo/services/sharing/public/interfaces/sharing.mojom |
@@ -2,12 +2,9 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-[DartPackage="mojo"] |
+[DartPackage="mojo_services"] |
module mojo; |
-struct NetworkError { |
- int32 code; |
- string? description; |
+interface SharingService { |
+ ShareText(string text); |
etiennej
2015/08/18 15:15:15
I think you should define a struct here. Something
alhaad1
2015/08/18 15:53:10
I am trying to understand the difference between w
|
}; |
- |
- |