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

Unified Diff: webkit/glue/password_autocomplete_listener_impl.cc

Issue 341030: Moves webview_impl.cc, webframe_impl.cc and webframeloaderclient_impl.cc into... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | « webkit/glue/image_resource_fetcher.h ('k') | webkit/glue/webaccessibilitymanager_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/password_autocomplete_listener_impl.cc
===================================================================
--- webkit/glue/password_autocomplete_listener_impl.cc (revision 30557)
+++ webkit/glue/password_autocomplete_listener_impl.cc (working copy)
@@ -13,11 +13,14 @@
#include "base/string_util.h"
#include "webkit/api/public/WebNode.h"
#include "webkit/api/public/WebVector.h"
+#include "webkit/api/src/WebFrameImpl.h"
+#include "webkit/api/src/WebViewImpl.h"
#include "webkit/glue/glue_util.h"
#include "webkit/glue/password_autocomplete_listener_impl.h"
-#include "webkit/glue/webframe_impl.h"
-#include "webkit/glue/webview_impl.h"
+using WebKit::WebFrameImpl;
+using WebKit::WebViewImpl;
+
namespace webkit_glue {
HTMLInputDelegate::HTMLInputDelegate(WebCore::HTMLInputElement* element)
@@ -47,8 +50,8 @@
const std::vector<string16>& suggestions,
int default_suggestion_index) {
WebFrameImpl* webframe =
- WebFrameImpl::FromFrame(element_->document()->frame());
- WebViewImpl* webview = webframe->GetWebViewImpl();
+ WebFrameImpl::fromFrame(element_->document()->frame());
+ WebViewImpl* webview = webframe->viewImpl();
if (!webview)
return;
« no previous file with comments | « webkit/glue/image_resource_fetcher.h ('k') | webkit/glue/webaccessibilitymanager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698