| Index: remoting/client/plugin/pepper_view.cc
|
| ===================================================================
|
| --- remoting/client/plugin/pepper_view.cc (revision 52921)
|
| +++ remoting/client/plugin/pepper_view.cc (working copy)
|
| @@ -30,6 +30,13 @@
|
| PepperView::~PepperView() {
|
| }
|
|
|
| +bool PepperView::Initialize() {
|
| + return true;
|
| +}
|
| +
|
| +void PepperView::TearDown() {
|
| +}
|
| +
|
| void PepperView::Paint() {
|
| if (!plugin_->CurrentlyOnPluginThread()) {
|
| RunTaskOnPluginThread(NewRunnableMethod(this, &PepperView::Paint));
|
| @@ -118,10 +125,10 @@
|
| }
|
| }
|
|
|
| -void PepperView::SetBackingStoreSize(int width, int height) {
|
| +void PepperView::SetHostScreenSize(int width, int height) {
|
| if (!plugin_->CurrentlyOnPluginThread()) {
|
| RunTaskOnPluginThread(NewRunnableMethod(this,
|
| - &PepperView::SetBackingStoreSize,
|
| + &PepperView::SetHostScreenSize,
|
| width, height));
|
| return;
|
| }
|
|
|