summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/gtk/first_run_bubble.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-29 02:01:02 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-29 02:01:02 +0000
commita26d3f0e6ccd9a51c2988db78f019406f144b4d0 (patch)
tree0aac1c8d6fe6169e9c6617878d933d7c11b06f88 /chrome/browser/ui/gtk/first_run_bubble.cc
parent78cce925a648ce459245c994a10746f373c04ecf (diff)
downloadchromium_src-a26d3f0e6ccd9a51c2988db78f019406f144b4d0.zip
chromium_src-a26d3f0e6ccd9a51c2988db78f019406f144b4d0.tar.gz
chromium_src-a26d3f0e6ccd9a51c2988db78f019406f144b4d0.tar.bz2
gtk: Replace most of the calls from UseGtkTheme() to UsingNativeTheme().
(Note: This is a TODO for akalin). BUG=None TEST=None R=akalin@chromium.org,evan@chromium.org Review URL: http://codereview.chromium.org/6880301 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83474 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/gtk/first_run_bubble.cc')
-rw-r--r--chrome/browser/ui/gtk/first_run_bubble.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/gtk/first_run_bubble.cc b/chrome/browser/ui/gtk/first_run_bubble.cc
index d00824b..17d23b0 100644
--- a/chrome/browser/ui/gtk/first_run_bubble.cc
+++ b/chrome/browser/ui/gtk/first_run_bubble.cc
@@ -53,7 +53,7 @@ void FirstRunBubble::Observe(NotificationType type,
const NotificationDetails& details) {
DCHECK(type == NotificationType::BROWSER_THEME_CHANGED);
- if (theme_service_->UseGtkTheme()) {
+ if (theme_service_->UsingNativeTheme()) {
for (std::vector<GtkWidget*>::iterator it = labels_.begin();
it != labels_.end(); ++it) {
gtk_widget_modify_fg(*it, GTK_STATE_NORMAL, NULL);