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

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

Issue 2629493004: Introduce DOMWindowClient (Closed)
Patch Set: Created 3 years, 11 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 | « third_party/WebKit/Source/core/frame/Navigator.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/Navigator.cpp
diff --git a/third_party/WebKit/Source/core/frame/Navigator.cpp b/third_party/WebKit/Source/core/frame/Navigator.cpp
index fad45bb39eb0566842196c390346113e4997b692..14c6ec1d1603965d5b21f3080301dd37bf0c691c 100644
--- a/third_party/WebKit/Source/core/frame/Navigator.cpp
+++ b/third_party/WebKit/Source/core/frame/Navigator.cpp
@@ -36,7 +36,7 @@
namespace blink {
-Navigator::Navigator(LocalFrame* frame) : DOMWindowProperty(frame) {}
+Navigator::Navigator(LocalFrame* frame) : DOMWindowClient(frame) {}
String Navigator::productSub() const {
return "20030107";
@@ -98,7 +98,7 @@ Vector<String> Navigator::languages() {
}
DEFINE_TRACE(Navigator) {
- DOMWindowProperty::trace(visitor);
+ DOMWindowClient::trace(visitor);
Supplementable<Navigator>::trace(visitor);
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/Navigator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698