summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webframe_impl.h
diff options
context:
space:
mode:
authorcpu@google.com <cpu@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-08 23:16:24 +0000
committercpu@google.com <cpu@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-08 23:16:24 +0000
commiteb6439387ab5035450035d606f6ff32319c13789 (patch)
tree897f9ffa88d64addd5ed0de10039c3dfc383100a /webkit/glue/webframe_impl.h
parent1640ffbff45713748fb31c9bbae46ea47ab6e8e0 (diff)
downloadchromium_src-eb6439387ab5035450035d606f6ff32319c13789.zip
chromium_src-eb6439387ab5035450035d606f6ff32319c13789.tar.gz
chromium_src-eb6439387ab5035450035d606f6ff32319c13789.tar.bz2
Reverting dfisher changes 133386 and 13381
TBR=darin Review URL: http://codereview.chromium.org/58018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13387 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webframe_impl.h')
-rw-r--r--webkit/glue/webframe_impl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/webkit/glue/webframe_impl.h b/webkit/glue/webframe_impl.h
index 0d8b876..942c000 100644
--- a/webkit/glue/webframe_impl.h
+++ b/webkit/glue/webframe_impl.h
@@ -130,7 +130,7 @@ class WebFrameImpl : public WebFrame, public base::RefCounted<WebFrameImpl> {
const string16& search_text,
const WebKit::WebFindOptions& options,
bool wrap_within_frame,
- WebKit::WebRect* selection_rect);
+ gfx::Rect* selection_rect);
virtual void StopFinding(bool clear_selection);
virtual void ScopeStringMatches(
int request_id,
@@ -174,9 +174,9 @@ class WebFrameImpl : public WebFrame, public base::RefCounted<WebFrameImpl> {
virtual void ClosePage();
- virtual WebKit::WebSize ScrollOffset() const;
+ virtual gfx::Size ScrollOffset() const;
- virtual bool BeginPrint(const WebKit::WebSize& page_size_px,
+ virtual bool BeginPrint(const gfx::Size& page_size_px,
int* page_count);
virtual float PrintPage(int page, skia::PlatformCanvas* canvas);
virtual void EndPrint();
@@ -193,7 +193,7 @@ class WebFrameImpl : public WebFrame, public base::RefCounted<WebFrameImpl> {
// WebFrameImpl
void Layout();
- void Paint(skia::PlatformCanvas* canvas, const WebKit::WebRect& rect);
+ void Paint(skia::PlatformCanvas* canvas, const gfx::Rect& rect);
bool IsLoading();
@@ -286,7 +286,7 @@ class WebFrameImpl : public WebFrame, public base::RefCounted<WebFrameImpl> {
// See WebFrame.h for details.
virtual void IncreaseMatchCount(int count, int request_id);
- virtual void ReportFindInPageSelection(const WebKit::WebRect& selection_rect,
+ virtual void ReportFindInPageSelection(const gfx::Rect& selection_rect,
int active_match_ordinal,
int request_id);