diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-03 00:06:09 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-03 00:06:09 +0000 |
commit | d3ba7727bab47266a43ba17790be43eaf4c7961f (patch) | |
tree | b796080c822c41b935fde0b37806f64d961abb2d /webkit/glue/webview.h | |
parent | 15730c45ebf0eb657ba30e19f643bfe1cf299ce7 (diff) | |
download | chromium_src-d3ba7727bab47266a43ba17790be43eaf4c7961f.zip chromium_src-d3ba7727bab47266a43ba17790be43eaf4c7961f.tar.gz chromium_src-d3ba7727bab47266a43ba17790be43eaf4c7961f.tar.bz2 |
Set the focus ring color to match the Gtk theme focus color.
BUG=8540
Review URL: http://codereview.chromium.org/173642
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25278 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webview.h')
-rw-r--r-- | webkit/glue/webview.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/glue/webview.h b/webkit/glue/webview.h index d451a1e..2d75798 100644 --- a/webkit/glue/webview.h +++ b/webkit/glue/webview.h @@ -258,6 +258,10 @@ class WebView : public WebKit::WebWidget { // Gets the WebView's active state (i.e., state of control tints). virtual bool IsActive() = 0; +#if defined(OS_LINUX) + virtual void SetThemeFocusRingColor(int r, int g, int b) = 0; +#endif + private: DISALLOW_COPY_AND_ASSIGN(WebView); }; |