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

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

Issue 2023903003: [WIP] Add WebCore.UseCounter UMA to supercede FeatureObserver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/page/Page.h
diff --git a/third_party/WebKit/Source/core/page/Page.h b/third_party/WebKit/Source/core/page/Page.h
index efc713b8d1a58f18c57bf2e4c221dac97b8b7d98..8a58fdef6ea6483839b680170a6ff35d74fc78ea 100644
--- a/third_party/WebKit/Source/core/page/Page.h
+++ b/third_party/WebKit/Source/core/page/Page.h
@@ -198,7 +198,12 @@ public:
bool isPainting() const { return m_isPainting; }
#endif
- void didCommitLoad(LocalFrame*);
+ // Invoked once when the main load for a page is committed.
+ void didCommitLoad();
+
+ // Loaded a document into the specified frame. May be invoked multiple times for
+ // a given frame (eg. for each SVG document).
+ void deprecatedDidCommitFrameLoad(LocalFrame*);
void acceptLanguagesChanged();

Powered by Google App Engine
This is Rietveld 408576698