| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010, 2012 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&); | 144 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&); |
| 145 virtual void invalidateRect(const WebCore::IntRect&); | 145 virtual void invalidateRect(const WebCore::IntRect&); |
| 146 virtual void setFocus(bool); | 146 virtual void setFocus(bool); |
| 147 virtual void frameRectsChanged(); | 147 virtual void frameRectsChanged(); |
| 148 virtual void setParent(WebCore::ScrollView*); | 148 virtual void setParent(WebCore::ScrollView*); |
| 149 virtual void handleEvent(WebCore::Event*); | 149 virtual void handleEvent(WebCore::Event*); |
| 150 virtual void notifyWidget(WebCore::WidgetNotification); | 150 virtual void notifyWidget(WebCore::WidgetNotification); |
| 151 virtual void show(); | 151 virtual void show(); |
| 152 virtual void hide(); | 152 virtual void hide(); |
| 153 virtual bool transformsAffectFrameRect(); | 153 virtual bool transformsAffectFrameRect(); |
| 154 virtual void clipRectChanged() OVERRIDE; |
| 154 | 155 |
| 155 // WebCore::MediaCanStartListener | 156 // WebCore::MediaCanStartListener |
| 156 virtual void mediaCanStart(); | 157 virtual void mediaCanStart(); |
| 157 | 158 |
| 158 // PluginController | 159 // PluginController |
| 159 virtual bool isPluginVisible(); | 160 virtual bool isPluginVisible(); |
| 160 virtual void invalidate(const WebCore::IntRect&); | 161 virtual void invalidate(const WebCore::IntRect&); |
| 161 virtual String userAgent(); | 162 virtual String userAgent(); |
| 162 virtual void loadURL(uint64_t requestID, const String& method, const String&
urlString, const String& target, | 163 virtual void loadURL(uint64_t requestID, const String& method, const String&
urlString, const String& target, |
| 163 const WebCore::HTTPHeaderMap& headerFields, const Vecto
r<uint8_t>& httpBody, bool allowPopups); | 164 const WebCore::HTTPHeaderMap& headerFields, const Vecto
r<uint8_t>& httpBody, bool allowPopups); |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 // This timer is used when plugin snapshotting is enabled, to capture a plug
in placeholder. | 253 // This timer is used when plugin snapshotting is enabled, to capture a plug
in placeholder. |
| 253 WebCore::DeferrableOneShotTimer<PluginView> m_pluginSnapshotTimer; | 254 WebCore::DeferrableOneShotTimer<PluginView> m_pluginSnapshotTimer; |
| 254 unsigned m_countSnapshotRetries; | 255 unsigned m_countSnapshotRetries; |
| 255 | 256 |
| 256 double m_pageScaleFactor; | 257 double m_pageScaleFactor; |
| 257 }; | 258 }; |
| 258 | 259 |
| 259 } // namespace WebKit | 260 } // namespace WebKit |
| 260 | 261 |
| 261 #endif // PluginView_h | 262 #endif // PluginView_h |
| OLD | NEW |