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

Side by Side Diff: services/resource_coordinator/public/interfaces/events.mojom

Issue 2798713002: Global Resource Coordinator: Basic service internals (Closed)
Patch Set: Review fixes Created 3 years, 8 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
OLDNEW
(Empty)
1 // Copyright 2017 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 resource_coordinator.mojom;
6
7 enum EventType {
8 TEST_EVENT,
nasko 2017/04/21 00:17:33 nit: Another plug for k-prefixed enum values.
oystein (OOO til 10th of July) 2017/04/21 17:57:55 Done.
9 ON_NAVIGATION_COMMIT,
10 ON_WEBCONTENTS_SHOWN,
nasko 2017/04/21 00:17:33 nit: I personally find WEBCONTENTS hard to read an
oystein (OOO til 10th of July) 2017/04/21 17:57:55 Done.
11 ON_WEBCONTENTS_HIDDEN,
12 ON_RENDERER_FRAME_CREATED,
13 ON_PROCESS_AUDIO_STARTED,
14 ON_PROCESS_AUDIO_STOPPED,
15 };
16
17 struct Event {
18 EventType type;
19 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698