| Index: chrome/browser/ui/gtk/gtk_tree.cc
|
| diff --git a/chrome/browser/ui/gtk/gtk_tree.cc b/chrome/browser/ui/gtk/gtk_tree.cc
|
| index 9fa023e66c4e108c6cde481e5672c8b8104c9401..b2c1dd54c195d2e7c0c6d8f05e1b0b262c848dd4 100644
|
| --- a/chrome/browser/ui/gtk/gtk_tree.cc
|
| +++ b/chrome/browser/ui/gtk/gtk_tree.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "base/logging.h"
|
| #include "base/utf_string_conversions.h"
|
| -#include "chrome/browser/ui/gtk/gtk_theme_service.h"
|
| +#include "chrome/browser/ui/gtk/theme_service_gtk.h"
|
| #include "third_party/skia/include/core/SkBitmap.h"
|
| #include "ui/base/models/table_model.h"
|
| #include "ui/gfx/gtk_util.h"
|
| @@ -384,7 +384,7 @@ void TreeAdapter::FillRow(GtkTreeIter* iter, ui::TreeModelNode* node) {
|
| if (icon_index >= 0 && icon_index < static_cast<int>(pixbufs_.size()))
|
| pixbuf = pixbufs_[icon_index];
|
| else
|
| - pixbuf = GtkThemeService::GetFolderIcon(true)->ToGdkPixbuf();
|
| + pixbuf = ThemeServiceGtk::GetFolderIcon(true)->ToGdkPixbuf();
|
| gtk_tree_store_set(tree_store_, iter,
|
| COL_ICON, pixbuf,
|
| COL_TITLE, UTF16ToUTF8(node->GetTitle()).c_str(),
|
|
|