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

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

Issue 289873002: Remove isCompositorFramePending plumbing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Expectations for virtual suite Created 6 years, 7 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
« no previous file with comments | « Source/core/testing/Internals.idl ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 bool isCompositorFramePending() const OVERRIDE;
122 virtual void scroll( 121 virtual void scroll(
123 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScrol l, 122 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScrol l,
124 const WebCore::IntRect& clipRect) OVERRIDE; 123 const WebCore::IntRect& clipRect) OVERRIDE;
125 virtual WebCore::IntRect rootViewToScreen(const WebCore::IntRect&) const OVE RRIDE; 124 virtual WebCore::IntRect rootViewToScreen(const WebCore::IntRect&) const OVE RRIDE;
126 virtual WebScreenInfo screenInfo() const OVERRIDE; 125 virtual WebScreenInfo screenInfo() const OVERRIDE;
127 virtual void contentsSizeChanged(WebCore::LocalFrame*, const WebCore::IntSiz e&) const OVERRIDE; 126 virtual void contentsSizeChanged(WebCore::LocalFrame*, const WebCore::IntSiz e&) const OVERRIDE;
128 virtual void deviceOrPageScaleFactorChanged() const OVERRIDE; 127 virtual void deviceOrPageScaleFactorChanged() const OVERRIDE;
129 virtual void layoutUpdated(WebCore::LocalFrame*) const OVERRIDE; 128 virtual void layoutUpdated(WebCore::LocalFrame*) const OVERRIDE;
130 virtual void mouseDidMoveOverElement( 129 virtual void mouseDidMoveOverElement(
131 const WebCore::HitTestResult&, unsigned modifierFlags) OVERRIDE; 130 const WebCore::HitTestResult&, unsigned modifierFlags) OVERRIDE;
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); 218 explicit NavigatorContentUtilsClientImpl(WebViewImpl*);
220 219
221 WebViewImpl* m_webView; 220 WebViewImpl* m_webView;
222 }; 221 };
223 222
224 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr omeClientImpl(), client.isChromeClientImpl()); 223 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr omeClientImpl(), client.isChromeClientImpl());
225 224
226 } // namespace blink 225 } // namespace blink
227 226
228 #endif 227 #endif
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.idl ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698