Chromium Code Reviews| Index: services/icu_data/icu_data.mojom |
| diff --git a/examples/recipes/recipe_handler/recipe.mojom b/services/icu_data/icu_data.mojom |
| similarity index 57% |
| copy from examples/recipes/recipe_handler/recipe.mojom |
| copy to services/icu_data/icu_data.mojom |
| index 1a452572c7a79bc19024259f5a86bcab580ed14e..53f8ac5d047091be7948d9d587bcb090fa33cab6 100644 |
| --- a/examples/recipes/recipe_handler/recipe.mojom |
| +++ b/services/icu_data/icu_data.mojom |
| @@ -2,12 +2,8 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -module recipes; |
| +module icu_data; |
|
jamesr
2015/01/08 19:03:11
re naming conventions I've tried to follow the gui
abarth-chromium
2015/01/08 19:08:03
SGTM. Thanks!
|
| -struct Ingredient { |
| - string url; |
| -}; |
| - |
| -interface Recipe { |
| - GetIngredients() => (array<Ingredient> ingredients); |
| +interface ICUData { |
| + Map(string sha1hash) => (handle<shared_buffer>? icu_data); |
| }; |