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

Side by Side Diff: Source/web/ChromeClientImpl.h

Issue 348193002: Remove some dead scrolling paths and unused params (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 virtual bool runJavaScriptConfirm(WebCore::LocalFrame*, const WTF::String&) OVERRIDE; 111 virtual bool runJavaScriptConfirm(WebCore::LocalFrame*, const WTF::String&) OVERRIDE;
112 virtual bool runJavaScriptPrompt( 112 virtual bool runJavaScriptPrompt(
113 WebCore::LocalFrame*, const WTF::String& message, 113 WebCore::LocalFrame*, const WTF::String& message,
114 const WTF::String& defaultValue, WTF::String& result) OVERRIDE; 114 const WTF::String& defaultValue, WTF::String& result) OVERRIDE;
115 virtual void setStatusbarText(const WTF::String& message) OVERRIDE; 115 virtual void setStatusbarText(const WTF::String& message) OVERRIDE;
116 virtual bool tabsToLinks() OVERRIDE; 116 virtual bool tabsToLinks() OVERRIDE;
117 virtual WebCore::IntRect windowResizerRect() const OVERRIDE; 117 virtual WebCore::IntRect windowResizerRect() const OVERRIDE;
118 virtual void invalidateContentsAndRootView(const WebCore::IntRect&) OVERRIDE ; 118 virtual void invalidateContentsAndRootView(const WebCore::IntRect&) OVERRIDE ;
119 virtual void invalidateContentsForSlowScroll(const WebCore::IntRect&) OVERRI DE; 119 virtual void invalidateContentsForSlowScroll(const WebCore::IntRect&) OVERRI DE;
120 virtual void scheduleAnimation() OVERRIDE; 120 virtual void scheduleAnimation() OVERRIDE;
121 virtual void scroll( 121 virtual void scroll() OVERRIDE;
122 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScrol l,
123 const WebCore::IntRect& clipRect) OVERRIDE;
124 virtual WebCore::IntRect rootViewToScreen(const WebCore::IntRect&) const OVE RRIDE; 122 virtual WebCore::IntRect rootViewToScreen(const WebCore::IntRect&) const OVE RRIDE;
125 virtual WebScreenInfo screenInfo() const OVERRIDE; 123 virtual WebScreenInfo screenInfo() const OVERRIDE;
126 virtual void contentsSizeChanged(WebCore::LocalFrame*, const WebCore::IntSiz e&) const OVERRIDE; 124 virtual void contentsSizeChanged(WebCore::LocalFrame*, const WebCore::IntSiz e&) const OVERRIDE;
127 virtual void deviceOrPageScaleFactorChanged() const OVERRIDE; 125 virtual void deviceOrPageScaleFactorChanged() const OVERRIDE;
128 virtual void layoutUpdated(WebCore::LocalFrame*) const OVERRIDE; 126 virtual void layoutUpdated(WebCore::LocalFrame*) const OVERRIDE;
129 virtual void mouseDidMoveOverElement( 127 virtual void mouseDidMoveOverElement(
130 const WebCore::HitTestResult&, unsigned modifierFlags) OVERRIDE; 128 const WebCore::HitTestResult&, unsigned modifierFlags) OVERRIDE;
131 virtual void setToolTip(const WTF::String& tooltipText, WebCore::TextDirecti on) OVERRIDE; 129 virtual void setToolTip(const WTF::String& tooltipText, WebCore::TextDirecti on) OVERRIDE;
132 virtual void dispatchViewportPropertiesDidChange(const WebCore::ViewportDesc ription&) const OVERRIDE; 130 virtual void dispatchViewportPropertiesDidChange(const WebCore::ViewportDesc ription&) const OVERRIDE;
133 virtual void print(WebCore::LocalFrame*) OVERRIDE; 131 virtual void print(WebCore::LocalFrame*) OVERRIDE;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 bool m_resizable; 198 bool m_resizable;
201 199
202 WebCore::PagePopupDriver* m_pagePopupDriver; 200 WebCore::PagePopupDriver* m_pagePopupDriver;
203 }; 201 };
204 202
205 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr omeClientImpl(), client.isChromeClientImpl()); 203 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr omeClientImpl(), client.isChromeClientImpl());
206 204
207 } // namespace blink 205 } // namespace blink
208 206
209 #endif 207 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698