diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-30 04:19:34 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-30 04:19:34 +0000 |
commit | 42b7289e9b7667a34c82a1395d380a00643f0c28 (patch) | |
tree | 50dae4af6a888936c5b6d893d97d9f7d03696c55 /webkit/glue/dom_operations_private.h | |
parent | 29672abd046612aa325fcfc0e69e1cc4d91c299c (diff) | |
download | chromium_src-42b7289e9b7667a34c82a1395d380a00643f0c28.zip chromium_src-42b7289e9b7667a34c82a1395d380a00643f0c28.tar.gz chromium_src-42b7289e9b7667a34c82a1395d380a00643f0c28.tar.bz2 |
Moves webview_impl.cc, webframe_impl.cc and webframeloaderclient_impl.cc into
webkit/api/src.
R=yaar
BUG=25896,25897,25902
TEST=none
Review URL: http://codereview.chromium.org/341030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30558 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/dom_operations_private.h')
-rw-r--r-- | webkit/glue/dom_operations_private.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/webkit/glue/dom_operations_private.h b/webkit/glue/dom_operations_private.h index 69676f4..403ca16 100644 --- a/webkit/glue/dom_operations_private.h +++ b/webkit/glue/dom_operations_private.h @@ -15,11 +15,11 @@ class String; } namespace WebKit { +class WebFrameImpl; class WebView; } class GURL; -class WebFrameImpl; namespace webkit_glue { @@ -27,8 +27,8 @@ namespace webkit_glue { // object corresponding to the content frame, otherwise return NULL. // The parameter is_frame_element indicates whether the input element // is frame/iframe element or not. -WebFrameImpl* GetWebFrameImplFromElement(WebCore::Element* element, - bool* is_frame_element); +WebKit::WebFrameImpl* GetWebFrameImplFromElement(WebCore::Element* element, + bool* is_frame_element); // If element is img, script or input type=image, then return its link refer // to the "src" attribute. If element is link, then return its link refer to @@ -50,8 +50,8 @@ bool ElementHasLegalLinkAttribute(const WebCore::Element* element, const WebCore::QualifiedName& attr_name); // Get pointer of WebFrameImpl from webview according to specific URL. -WebFrameImpl* GetWebFrameImplFromWebViewForSpecificURL(WebKit::WebView* view, - const GURL& page_url); +WebKit::WebFrameImpl* GetWebFrameImplFromWebViewForSpecificURL( + WebKit::WebView* view, const GURL& page_url); } // namespace webkit_glue |