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

Unified Diff: content/public/common/bindings_policy.h

Issue 12389073: Collect tab timing information for use in telementry-based startup tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix telemetry tests with reference builds. Created 7 years, 7 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: content/public/common/bindings_policy.h
diff --git a/content/public/common/bindings_policy.h b/content/public/common/bindings_policy.h
index 140cef39c45e25de5052d1bba4da5db9ff25ba13..8c8a74356a25f569a3a1057c9679d9ccfe84bc02 100644
--- a/content/public/common/bindings_policy.h
+++ b/content/public/common/bindings_policy.h
@@ -20,6 +20,11 @@ enum BindingsPolicy {
BINDINGS_POLICY_DOM_AUTOMATION = 1 << 1,
// Bindings that allow access to the external host (through automation).
BINDINGS_POLICY_EXTERNAL_HOST = 1 << 2,
+ // Bindings that allows the JS content to retrieve a variety of internal
+ // metrics. (By default this isn't allowed unless the app has been started up
+ // with the --enable-stats-collection-bindings switch.)
+ BINDINGS_POLICY_STATS_COLLECTION = 1 << 3,
+
};
}

Powered by Google App Engine
This is Rietveld 408576698