| Index: content/renderer/browser_plugin/browser_plugin.h
|
| diff --git a/content/renderer/browser_plugin/browser_plugin.h b/content/renderer/browser_plugin/browser_plugin.h
|
| index 0b8fab725d06057473e0b3ee9d04ce735786bd7c..cd695d3d21c959f4628ad6d4d6e3a0de9bd7154c 100644
|
| --- a/content/renderer/browser_plugin/browser_plugin.h
|
| +++ b/content/renderer/browser_plugin/browser_plugin.h
|
| @@ -60,6 +60,10 @@ class CONTENT_EXPORT BrowserPlugin :
|
| std::string GetNameAttribute() const;
|
| // Parse the name attribute value.
|
| void ParseNameAttribute();
|
| + // Get the allowtransparency attribute value.
|
| + bool GetAllowTransparencyAttribute() const;
|
| + // Parse the allowtransparency attribute.
|
| + void ParseAllowTransparencyAttribute();
|
| // Get the src attribute value of the BrowserPlugin instance.
|
| std::string GetSrcAttribute() const;
|
| // Parse the src attribute value of the BrowserPlugin instance.
|
| @@ -135,10 +139,6 @@ class CONTENT_EXPORT BrowserPlugin :
|
| // sent, if needed.
|
| void DidCommitCompositorFrame();
|
|
|
| - // Apply opacity settings on the composited layers in embedder and send a
|
| - // message to the guest renderer to enable or disable transparent background.
|
| - void SetContentsOpaque(bool opaque);
|
| -
|
| // Returns whether a message should be forwarded to BrowserPlugin.
|
| static bool ShouldForwardToBrowserPlugin(const IPC::Message& message);
|
|
|
| @@ -335,9 +335,6 @@ class CONTENT_EXPORT BrowserPlugin :
|
| // Tracks the visibility of the browser plugin regardless of the whole
|
| // embedder RenderView's visibility.
|
| bool visible_;
|
| - // Tracks the opacity of the compositing helper's layers and the guest
|
| - // renderer process.
|
| - bool opaque_;
|
|
|
| WebCursor cursor_;
|
|
|
|
|