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

Unified Diff: chrome/browser/ui/webui/performance_monitor/web_ui_handler.h

Issue 10702117: Chrome Performance Monitor: Metric API Functions. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed it up. Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/performance_monitor/web_ui_handler.h
diff --git a/chrome/browser/ui/webui/performance_monitor/web_ui_handler.h b/chrome/browser/ui/webui/performance_monitor/web_ui_handler.h
index 7a9dc78f0e88f3bb9bc039ad9050796952238ca3..3fe5721cdb9cbc34c97671a99b264b530d86f387 100644
--- a/chrome/browser/ui/webui/performance_monitor/web_ui_handler.h
+++ b/chrome/browser/ui/webui/performance_monitor/web_ui_handler.h
@@ -44,6 +44,12 @@ class WebUIHandler : public content::WebUIMessageHandler,
// Callback for the "getEvents" message.
void HandleGetEvents(const base::ListValue* args);
+ // Callback for the "getAllMetricTypes" message.
+ void HandleGetAllMetricTypes(const base::ListValue* args);
+
+ // Callback for the "getMetric" message.
+ void HandleGetMetric(const base::ListValue* args);
+
DISALLOW_COPY_AND_ASSIGN(WebUIHandler);
};

Powered by Google App Engine
This is Rietveld 408576698