Index: content/common/host_zoom_level.mojom |
diff --git a/url/mojo/url_test.mojom b/content/common/host_zoom_level.mojom |
similarity index 54% |
copy from url/mojo/url_test.mojom |
copy to content/common/host_zoom_level.mojom |
index c9b346988f546008a0cfb10d94887f67aa0c8550..f1bc0a179d865e698cf84c28d6dda9eda9f634c6 100644 |
--- a/url/mojo/url_test.mojom |
+++ b/content/common/host_zoom_level.mojom |
@@ -2,15 +2,11 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-module url.mojom; |
+module content.mojom; |
-import "url/mojo/origin.mojom"; |
import "url/mojo/url.mojom"; |
-interface UrlTest { |
- [Sync] |
- BounceUrl(Url in) => (Url out); |
- |
- [Sync] |
- BounceOrigin(Origin in) => (Origin out); |
+interface HostZoomLevel { |
+ GetZoomLevel(url.mojom.Url url, int32 render_view_id) |
jam
2016/05/16 18:28:32
we eventually want to get rid of routing IDs.
Ca
wjmaclean
2016/05/16 18:59:53
Sorry, just noticed this comment.
The main concer
scottmg
2016/05/16 22:54:56
OK, thanks. Moved to the frame.
|
+ => (url.mojom.Url url, double zoom_level); |
}; |