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

Side by Side Diff: extensions/browser/guest_view/guest_view_events.h

Issue 1272373003: Add extension event histogram values for messaging, webRequest, and webview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: last Created 5 years, 4 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 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 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_GUEST_VIEW_EVENTS_H_
6 #define EXTENSIONS_BROWSER_GUEST_VIEW_GUEST_VIEW_EVENTS_H_
7
8 #include <string>
9
10 #include "extensions/browser/extension_event_histogram_value.h"
11
12 namespace extensions {
13 namespace guest_view_events {
14
15 // Returns the events::HistogramValue for the |event_name| guest view event.
16 // This knows about all events for all guest view types, whether web view,
17 // extension options, the guest view base class, etc.
18 events::HistogramValue GetEventHistogramValue(const std::string& event_name);
19
20 } // namespace guest_view_events
21 } // namespace extensions
22
23 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_GUEST_VIEW_EVENTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698