Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Unified Diff: content/common/host_zoom_level.mojom

Issue 1964273002: Add FrameHost mojo service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: android-2 Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698