| Index: Source/web/WebViewImpl.h
|
| diff --git a/Source/web/WebViewImpl.h b/Source/web/WebViewImpl.h
|
| index 303f7c44348c76ad3288656f85c201ceefde96f1..109481d1da8920ad791e4401853151fe943ab7df 100644
|
| --- a/Source/web/WebViewImpl.h
|
| +++ b/Source/web/WebViewImpl.h
|
| @@ -198,6 +198,7 @@ public:
|
| virtual void setPageEncoding(const WebString& encoding);
|
| virtual bool isTransparent() const;
|
| virtual void setIsTransparent(bool value);
|
| + virtual void setBaseBackgroundColor(WebColor);
|
| virtual bool tabsToLinks() const;
|
| virtual void setTabsToLinks(bool value);
|
| virtual bool tabKeyCyclesThroughElements() const;
|
| @@ -324,6 +325,8 @@ public:
|
| void setIgnoreInputEvents(bool newValue);
|
| WebDevToolsAgentPrivate* devToolsAgentPrivate() { return m_devToolsAgent.get(); }
|
|
|
| + WebCore::Color baseBackgroundColor() const { return m_baseBackgroundColor; }
|
| +
|
| PageOverlayList* pageOverlays() const { return m_pageOverlays.get(); }
|
|
|
| void setOverlayLayer(WebCore::GraphicsLayer*);
|
| @@ -833,6 +836,7 @@ private:
|
| bool m_showDebugBorders;
|
| bool m_continuousPaintingEnabled;
|
| bool m_showScrollBottleneckRects;
|
| + WebColor m_baseBackgroundColor;
|
| };
|
|
|
| } // namespace WebKit
|
|
|