| Index: third_party/WebKit/public/web/WebPlugin.h
|
| diff --git a/third_party/WebKit/public/web/WebPlugin.h b/third_party/WebKit/public/web/WebPlugin.h
|
| index e805e94d7b926aa827ba0b08c9b0d4150b5f9f65..099e938b78acb721a407c9e23b655daf3019e426 100644
|
| --- a/third_party/WebKit/public/web/WebPlugin.h
|
| +++ b/third_party/WebKit/public/web/WebPlugin.h
|
| @@ -227,10 +227,12 @@ class WebPlugin {
|
| // Rotates the plugin's view of its content.
|
| virtual void rotateView(RotationType type) {}
|
|
|
| - virtual bool isPlaceholder() { return true; }
|
| + virtual bool isPlaceholder() { return placeholder; }
|
| + virtual void markAsPlaceholder() { placeholder = true; }
|
|
|
| protected:
|
| ~WebPlugin() {}
|
| + bool placeholder = false;
|
| };
|
|
|
| } // namespace blink
|
|
|