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

Side by Side Diff: ash/public/interfaces/touch_view.mojom

Issue 2505403003: TouchView Mojom (Closed)
Patch Set: Minor param rename 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 ash.mojom;
6
7 // Used to listen for when TouchView is toggled.
8 interface TouchViewObserver {
9 // This is fired after the touch view mode has been toggled.
10 OnTouchViewToggled(bool enabled);
11 };
12
13 // Accepts observers which are notified of the current state of TouchView, and
14 // of all future state changes.
15 interface TouchViewManager {
16 // Calling this method triggers an initial notification of the touch view
17 // state. Observers are automatically removed as their connections are closed.
18 AddObserver(TouchViewObserver observer);
19 };
OLDNEW
« no previous file with comments | « ash/public/interfaces/BUILD.gn ('k') | chrome/browser/chrome_content_browser_manifest_overlay.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698