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

Side by Side Diff: webkit/plugins/ppapi/ppapi_webplugin_impl.cc

Issue 8065026: Plumbing for fullscreen change event notification for plugins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/ppapi/ppapi_webplugin_impl.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/plugins/ppapi/ppapi_webplugin_impl.h" 5 #include "webkit/plugins/ppapi/ppapi_webplugin_impl.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 8
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "googleurl/src/gurl.h" 10 #include "googleurl/src/gurl.h"
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 245
246 bool WebPluginImpl::printPage(int page_number, 246 bool WebPluginImpl::printPage(int page_number,
247 WebKit::WebCanvas* canvas) { 247 WebKit::WebCanvas* canvas) {
248 return instance_->PrintPage(page_number, canvas); 248 return instance_->PrintPage(page_number, canvas);
249 } 249 }
250 250
251 void WebPluginImpl::printEnd() { 251 void WebPluginImpl::printEnd() {
252 return instance_->PrintEnd(); 252 return instance_->PrintEnd();
253 } 253 }
254 254
255 void WebPluginImpl::onFullscreenChanged() {
256 instance_->OnFullscreenChanged();
257 }
258
255 } // namespace ppapi 259 } // namespace ppapi
256 } // namespace webkit 260 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppapi_webplugin_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698