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

Side by Side Diff: rendering/RenderThemeChromiumLinux.h

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 | « no previous file | rendering/RenderThemeChromiumLinux.cpp » ('j') | 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 * This file is part of the WebKit project. 2 * This file is part of the WebKit project.
3 * 3 *
4 * Copyright (C) 2006 Apple Computer, Inc. 4 * Copyright (C) 2006 Apple Computer, Inc.
5 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com 5 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com
6 * Copyright (C) 2007 Holger Hans Peter Freyther 6 * Copyright (C) 2007 Holger Hans Peter Freyther
7 * Copyright (C) 2007 Alp Toker <alp@atoker.com> 7 * Copyright (C) 2007 Alp Toker <alp@atoker.com>
8 * Copyright (C) 2008, 2009 Google, Inc. 8 * Copyright (C) 2008, 2009 Google, Inc.
9 * All rights reserved. 9 * All rights reserved.
10 * Copyright (C) 2009 Kenneth Rohde Christiansen 10 * Copyright (C) 2009 Kenneth Rohde Christiansen
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 // A method asking if the control changes its tint when the window has f ocus or not. 43 // A method asking if the control changes its tint when the window has f ocus or not.
44 virtual bool controlSupportsTints(const RenderObject*) const; 44 virtual bool controlSupportsTints(const RenderObject*) const;
45 45
46 // List Box selection color 46 // List Box selection color
47 virtual Color activeListBoxSelectionBackgroundColor() const; 47 virtual Color activeListBoxSelectionBackgroundColor() const;
48 virtual Color activeListBoxSelectionForegroundColor() const; 48 virtual Color activeListBoxSelectionForegroundColor() const;
49 virtual Color inactiveListBoxSelectionBackgroundColor() const; 49 virtual Color inactiveListBoxSelectionBackgroundColor() const;
50 virtual Color inactiveListBoxSelectionForegroundColor() const; 50 virtual Color inactiveListBoxSelectionForegroundColor() const;
51 51
52 void setCaretBlinkInterval(double interval);
53 virtual double caretBlinkInterval() const;
54
52 private: 55 private:
53 RenderThemeChromiumLinux(); 56 RenderThemeChromiumLinux();
54 virtual ~RenderThemeChromiumLinux(); 57 virtual ~RenderThemeChromiumLinux();
55 58
56 // A general method asking if any control tinting is supported at all. 59 // A general method asking if any control tinting is supported at all.
57 virtual bool supportsControlTints() const; 60 virtual bool supportsControlTints() const;
61
62 double m_caretBlinkInterval;
58 }; 63 };
59 64
60 } // namespace WebCore 65 } // namespace WebCore
61 66
62 #endif // RenderThemeChromiumLinux_h 67 #endif // RenderThemeChromiumLinux_h
OLDNEW
« no previous file with comments | « no previous file | rendering/RenderThemeChromiumLinux.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698