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

Side by Side Diff: chrome/browser/resources/engagement/site_engagement.js

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 unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/engagement/site_engagement.html ('k') | chrome/browser/ui/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 'use strict';
6
7 define('main', [
8 'mojo/public/js/connection',
9 'chrome/browser/ui/webui/engagement/site_engagement.mojom',
10 'content/public/renderer/service_provider',
11 ], function(connection, siteEngagementMojom, serviceProvider) {
12
13 return function() {
14 var uiHandler = connection.bindHandleToProxy(
15 serviceProvider.connectToService(
16 siteEngagementMojom.SiteEngagementUIHandler.name),
17 siteEngagementMojom.SiteEngagementUIHandler);
18
19 // Populate engagement table.
20 uiHandler.getSiteEngagementInfo().then(response => {
21 $('engagement-table').engagementInfo = response.info;
22 });
23 };
24 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/engagement/site_engagement.html ('k') | chrome/browser/ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698