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

Unified Diff: chrome/browser/ui/webui/engagement/site_engagement.mojom

Issue 1316043003: Add chrome://site-engagement WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@navigation_smarter
Patch Set: fix dependencies Created 5 years, 3 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: chrome/browser/ui/webui/engagement/site_engagement.mojom
diff --git a/third_party/mojo/src/mojo/public/interfaces/bindings/tests/scoping.mojom b/chrome/browser/ui/webui/engagement/site_engagement.mojom
similarity index 52%
copy from third_party/mojo/src/mojo/public/interfaces/bindings/tests/scoping.mojom
copy to chrome/browser/ui/webui/engagement/site_engagement.mojom
index 2e9edb10b4eddfca591bdf64966238b9a75fbe2f..b39db67614d7220d4c28d8190fabc174dd5bd9a6 100644
--- a/third_party/mojo/src/mojo/public/interfaces/bindings/tests/scoping.mojom
+++ b/chrome/browser/ui/webui/engagement/site_engagement.mojom
@@ -2,16 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-module mojo.test;
-
-interface A {
- GetB(B& b);
-};
-
-interface B {
- GetC(C& c);
+struct SiteEngagementInfo {
+ string origin;
+ int32 score;
};
-interface C {
- D();
+interface SiteEngagementUIHandler {
+ GetSiteEngagementInfo() => (array<SiteEngagementInfo> info);
};
« no previous file with comments | « chrome/browser/ui/webui/engagement/BUILD.gn ('k') | chrome/browser/ui/webui/engagement/site_engagement_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698