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

Side by Side Diff: third_party/WebKit/public/platform/site_engagement.mojom

Issue 2535483002: Plumb site engagement to the renderer process. (Closed)
Patch Set: Rebase. Fix Win compile Created 4 years 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
OLDNEW
(Empty)
1 // Copyright 2016 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 module blink.mojom;
6
7 enum EngagementLevel {
8 NONE,
9 MINIMAL,
10 LOW,
11 MEDIUM,
12 HIGH,
13 MAX,
14 };
15
16 interface EngagementClient {
17 // The browser tells the renderer the engagement level of the current URL.
18 SetEngagementLevel(EngagementLevel level);
nasko 2016/11/28 19:18:08 I would suggest adding the URL as an explicit para
dominickn 2016/11/29 07:41:22 Done.
19 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698