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

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

Issue 631833002: Move color chooser objects to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 virtual void contentsSizeChanged(LocalFrame*, const IntSize&) const OVERRIDE ; 120 virtual void contentsSizeChanged(LocalFrame*, const IntSize&) const OVERRIDE ;
121 virtual void deviceOrPageScaleFactorChanged() const OVERRIDE; 121 virtual void deviceOrPageScaleFactorChanged() const OVERRIDE;
122 virtual void layoutUpdated(LocalFrame*) const OVERRIDE; 122 virtual void layoutUpdated(LocalFrame*) const OVERRIDE;
123 virtual void mouseDidMoveOverElement( 123 virtual void mouseDidMoveOverElement(
124 const HitTestResult&, unsigned modifierFlags) OVERRIDE; 124 const HitTestResult&, unsigned modifierFlags) OVERRIDE;
125 virtual void setToolTip(const WTF::String& tooltipText, TextDirection) OVERR IDE; 125 virtual void setToolTip(const WTF::String& tooltipText, TextDirection) OVERR IDE;
126 virtual void dispatchViewportPropertiesDidChange(const ViewportDescription&) const OVERRIDE; 126 virtual void dispatchViewportPropertiesDidChange(const ViewportDescription&) const OVERRIDE;
127 virtual void print(LocalFrame*) OVERRIDE; 127 virtual void print(LocalFrame*) OVERRIDE;
128 virtual void annotatedRegionsChanged() OVERRIDE; 128 virtual void annotatedRegionsChanged() OVERRIDE;
129 virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, const IntRect&, const IntRect&) OVERRIDE; 129 virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, const IntRect&, const IntRect&) OVERRIDE;
130 virtual PassOwnPtr<ColorChooser> createColorChooser(LocalFrame*, ColorChoose rClient*, const Color&) OVERRIDE; 130 virtual PassOwnPtrWillBeRawPtr<ColorChooser> createColorChooser(LocalFrame*, ColorChooserClient*, const Color&) OVERRIDE;
131 virtual PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClien t*, const DateTimeChooserParameters&) OVERRIDE; 131 virtual PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClien t*, const DateTimeChooserParameters&) OVERRIDE;
132 virtual void openTextDataListChooser(HTMLInputElement&) OVERRIDE; 132 virtual void openTextDataListChooser(HTMLInputElement&) OVERRIDE;
133 virtual void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) OVERRIDE; 133 virtual void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) OVERRIDE;
134 virtual void enumerateChosenDirectory(FileChooser*) OVERRIDE; 134 virtual void enumerateChosenDirectory(FileChooser*) OVERRIDE;
135 virtual void setCursor(const Cursor&) OVERRIDE; 135 virtual void setCursor(const Cursor&) OVERRIDE;
136 virtual void needTouchEvents(bool needTouchEvents) OVERRIDE; 136 virtual void needTouchEvents(bool needTouchEvents) OVERRIDE;
137 virtual void setTouchAction(TouchAction) OVERRIDE; 137 virtual void setTouchAction(TouchAction) OVERRIDE;
138 138
139 virtual GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE; 139 virtual GraphicsLayerFactory* graphicsLayerFactory() const OVERRIDE;
140 140
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 bool m_resizable; 196 bool m_resizable;
197 197
198 PagePopupDriver* m_pagePopupDriver; 198 PagePopupDriver* m_pagePopupDriver;
199 }; 199 };
200 200
201 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl()); 201 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl());
202 202
203 } // namespace blink 203 } // namespace blink
204 204
205 #endif 205 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698