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

Side by Side Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 2417783005: [Master/Overview CL] Make PageScaleFactor work for oopif subframe.
Patch Set: Rebase to master@{#429656}. Created 4 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 virtual void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, 245 virtual void detachCompositorAnimationTimeline(CompositorAnimationTimeline*,
246 LocalFrame* localRoot) {} 246 LocalFrame* localRoot) {}
247 247
248 virtual void enterFullscreenForElement(Element*) {} 248 virtual void enterFullscreenForElement(Element*) {}
249 virtual void exitFullscreenForElement(Element*) {} 249 virtual void exitFullscreenForElement(Element*) {}
250 250
251 virtual void clearCompositedSelection(LocalFrame*) {} 251 virtual void clearCompositedSelection(LocalFrame*) {}
252 virtual void updateCompositedSelection(LocalFrame*, 252 virtual void updateCompositedSelection(LocalFrame*,
253 const CompositedSelection&) {} 253 const CompositedSelection&) {}
254 254
255 virtual void setEventListenerProperties(WebEventListenerClass, 255 virtual void setEventListenerProperties(LocalFrame*,
256 WebEventListenerClass,
256 WebEventListenerProperties) = 0; 257 WebEventListenerProperties) = 0;
257 virtual WebEventListenerProperties eventListenerProperties( 258 virtual WebEventListenerProperties eventListenerProperties(
259 LocalFrame*,
258 WebEventListenerClass) const = 0; 260 WebEventListenerClass) const = 0;
259 virtual void setHasScrollEventHandlers(bool) = 0; 261 virtual void setHasScrollEventHandlers(bool) = 0;
260 virtual bool hasScrollEventHandlers() const = 0; 262 virtual bool hasScrollEventHandlers() const = 0;
261 263
262 virtual void setTouchAction(TouchAction) = 0; 264 virtual void setTouchAction(TouchAction) = 0;
263 265
264 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). 266 // Checks if there is an opened popup, called by LayoutMenuList::showPopup().
265 virtual bool hasOpenedPopup() const = 0; 267 virtual bool hasOpenedPopup() const = 0;
266 virtual PopupMenu* openPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; 268 virtual PopupMenu* openPopupMenu(LocalFrame&, HTMLSelectElement&) = 0;
267 virtual DOMWindow* pagePopupWindowForTesting() const = 0; 269 virtual DOMWindow* pagePopupWindowForTesting() const = 0;
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 360
359 LayoutPoint m_lastToolTipPoint; 361 LayoutPoint m_lastToolTipPoint;
360 String m_lastToolTipText; 362 String m_lastToolTipText;
361 363
362 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 364 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
363 }; 365 };
364 366
365 } // namespace blink 367 } // namespace blink
366 368
367 #endif // ChromeClient_h 369 #endif // ChromeClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoaderClient.h ('k') | third_party/WebKit/Source/web/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698