| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |