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

Unified Diff: third_party/WebKit/Source/web/tests/sim/SimWebFrameClient.cpp

Issue 2732483004: Reinitialize WindowProxy on navigations. (Closed)
Patch Set: . Created 3 years, 10 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/web/tests/sim/SimWebFrameClient.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/web/tests/sim/SimWebFrameClient.cpp
diff --git a/third_party/WebKit/Source/web/tests/sim/SimWebFrameClient.cpp b/third_party/WebKit/Source/web/tests/sim/SimWebFrameClient.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..2cc36dd6672e71c43b04d6de5f6c0bf53da65e61
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/sim/SimWebFrameClient.cpp
@@ -0,0 +1,21 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "web/tests/sim/SimWebFrameClient.h"
+
+#include "public/web/WebConsoleMessage.h"
+#include "web/tests/sim/SimTest.h"
+
+namespace blink {
+
+SimWebFrameClient::SimWebFrameClient(SimTest& test) : m_test(&test) {}
+
+void SimWebFrameClient::didAddMessageToConsole(const WebConsoleMessage& message,
+ const WebString& sourceName,
+ unsigned sourceLine,
+ const WebString& stackTrace) {
+ m_test->addConsoleMessage(message.text);
+}
+
+} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/web/tests/sim/SimWebFrameClient.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698