Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: rendering/RenderThemeChromiumLinux.cpp

Issue 184011: WebKit side of obeying gtk-cursor-blink (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « rendering/RenderThemeChromiumLinux.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. 2 * Copyright (C) 2007 Apple Inc.
3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com>
4 * Copyright (C) 2008 Collabora Ltd. 4 * Copyright (C) 2008 Collabora Ltd.
5 * Copyright (C) 2008, 2009 Google Inc. 5 * Copyright (C) 2008, 2009 Google Inc.
6 * Copyright (C) 2009 Kenneth Rohde Christiansen 6 * Copyright (C) 2009 Kenneth Rohde Christiansen
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 Color RenderThemeChromiumLinux::inactiveListBoxSelectionForegroundColor() const 89 Color RenderThemeChromiumLinux::inactiveListBoxSelectionForegroundColor() const
90 { 90 {
91 return Color(0x32, 0x32, 0x32); 91 return Color(0x32, 0x32, 0x32);
92 } 92 }
93 93
94 bool RenderThemeChromiumLinux::supportsControlTints() const 94 bool RenderThemeChromiumLinux::supportsControlTints() const
95 { 95 {
96 return true; 96 return true;
97 } 97 }
98 98
99 void RenderThemeChromiumLinux::setCaretBlinkInterval(double interval)
100 {
101 m_caretBlinkInterval = interval;
102 }
103
104 double RenderThemeChromiumLinux::caretBlinkInterval() const
105 {
106 return m_caretBlinkInterval;
107 }
108
99 } // namespace WebCore 109 } // namespace WebCore
OLDNEW
« no previous file with comments | « rendering/RenderThemeChromiumLinux.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698