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

Unified Diff: third_party/WebKit/Source/core/frame/UseCounter.cpp

Issue 2877893002: Make UseCounter take a LocaFrame instead of any Frame (Closed)
Patch Set: Rebase Created 3 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: third_party/WebKit/Source/core/frame/UseCounter.cpp
diff --git a/third_party/WebKit/Source/core/frame/UseCounter.cpp b/third_party/WebKit/Source/core/frame/UseCounter.cpp
index 9c7697cf8de2c99eb18ac9028cf657d53860953d..ca055a561b99574ca266bf9f2ff42156bb6e61d4 100644
--- a/third_party/WebKit/Source/core/frame/UseCounter.cpp
+++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp
@@ -1178,7 +1178,7 @@ void UseCounter::DidCommitLoad(KURL url) {
}
}
-void UseCounter::Count(const Frame* frame, Feature feature) {
+void UseCounter::Count(const LocalFrame* frame, Feature feature) {
if (!frame)
return;
Page* page = frame->GetPage();

Powered by Google App Engine
This is Rietveld 408576698