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

Side by Side Diff: Source/WebKit2/WebProcess/Plugins/PluginView.h

Issue 12475008: Merge 144236 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 9 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
« no previous file with comments | « Source/WebKit2/ChangeLog ('k') | Source/WebKit2/WebProcess/Plugins/PluginView.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) 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
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
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
OLDNEW
« no previous file with comments | « Source/WebKit2/ChangeLog ('k') | Source/WebKit2/WebProcess/Plugins/PluginView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698