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

Unified Diff: Source/core/page/Page.h

Issue 986583002: Collect host of Web Component usage to send to RAPPOR (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix typo Created 5 years, 9 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
« no previous file with comments | « Source/core/frame/OriginsUsingFeatures.cpp ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/Page.h
diff --git a/Source/core/page/Page.h b/Source/core/page/Page.h
index a3c7334f68e67953ef29441eaff1cec5c5668ff6..716034dc2d93f399ed4a2cdf13a629ef37c4fc58 100644
--- a/Source/core/page/Page.h
+++ b/Source/core/page/Page.h
@@ -23,6 +23,7 @@
#include "core/dom/ViewportDescription.h"
#include "core/frame/LocalFrame.h"
+#include "core/frame/OriginsUsingFeatures.h"
#include "core/frame/SettingsDelegate.h"
#include "core/frame/UseCounter.h"
#include "core/page/PageAnimator.h"
@@ -148,6 +149,7 @@ public:
Settings& settings() const { return *m_settings; }
UseCounter& useCounter() { return m_useCounter; }
+ OriginsUsingFeatures& originsUsingFeatures() { return m_originsUsingFeatures; }
void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements = b; }
bool tabKeyCyclesThroughElements() const { return m_tabKeyCyclesThroughElements; }
@@ -245,6 +247,7 @@ private:
OwnPtrWillBeMember<ValidationMessageClient> m_validationMessageClient;
UseCounter m_useCounter;
+ OriginsUsingFeatures m_originsUsingFeatures;
bool m_openedByDOM;
« no previous file with comments | « Source/core/frame/OriginsUsingFeatures.cpp ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698