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

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

Issue 2925963002: Create NetworkQuietDetector. (Closed)
Patch Set: Dont create NetworkQuietDetector when FrameResourceCoordinator is not enabled Created 3 years, 6 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
1 // Copyright 2017 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 module resource_coordinator.mojom; 5 module resource_coordinator.mojom;
6 6
7 enum EventType { 7 enum EventType {
8 kTestEvent, 8 kTestEvent,
9 kOnNavigationCommit, 9 kOnNavigationCommit,
10 kOnWebContentsShown, 10 kOnWebContentsShown,
11 kOnWebContentsHidden, 11 kOnWebContentsHidden,
12 kOnRendererFrameCreated, 12 kOnRendererFrameCreated,
13 kOnProcessAudioStarted, 13 kOnProcessAudioStarted,
14 kOnProcessAudioStopped, 14 kOnProcessAudioStopped,
15 kOnLocalFrameNetworkIdle,
15 }; 16 };
16 17
17 struct Event { 18 struct Event {
18 EventType type; 19 EventType type;
19 }; 20 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698