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

Unified Diff: Source/web/tests/ChromeClientImplTest.cpp

Issue 232133004: Split WebLocalFrame into a distinct subclass of WebFrame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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: Source/web/tests/ChromeClientImplTest.cpp
diff --git a/Source/web/tests/ChromeClientImplTest.cpp b/Source/web/tests/ChromeClientImplTest.cpp
index 21971da0d4aa718bee2e7d7dd6f5d268ee269dca..bbbda02cee0141c9f38fc68adcb6eec9906e713a 100644
--- a/Source/web/tests/ChromeClientImplTest.cpp
+++ b/Source/web/tests/ChromeClientImplTest.cpp
@@ -30,9 +30,9 @@
#include "config.h"
-#include "WebFrame.h"
#include "WebFrameClient.h"
#include "WebInputEvent.h"
+#include "WebLocalFrame.h"
#include "WebView.h"
#include "WebViewClient.h"
#include "WebViewImpl.h"
@@ -88,7 +88,7 @@ protected:
virtual void SetUp()
{
m_webView = toWebViewImpl(WebView::create(&m_webViewClient));
- m_mainFrame = WebFrame::create(&m_webFrameClient);
+ m_mainFrame = WebLocalFrame::create(&m_webFrameClient);
m_webView->setMainFrame(m_mainFrame);
m_chromeClientImpl = toChromeClientImpl(&m_webView->page()->chrome().client());
m_result = WebNavigationPolicyIgnore;

Powered by Google App Engine
This is Rietveld 408576698