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

Unified Diff: ui/views/controls/table/table_view_views.cc

Issue 10387121: Revert 136996 - ui: Move NativeTheme files into ui/base/native_theme/ directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: ui/views/controls/table/table_view_views.cc
===================================================================
--- ui/views/controls/table/table_view_views.cc (revision 137002)
+++ ui/views/controls/table/table_view_views.cc (working copy)
@@ -7,8 +7,8 @@
#include "base/i18n/rtl.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/base/models/table_model.h"
-#include "ui/base/native_theme/native_theme.h"
#include "ui/gfx/canvas.h"
+#include "ui/gfx/native_theme.h"
#include "ui/gfx/skia_util.h"
#include "ui/views/border.h"
#include "ui/views/controls/scroll_view.h"
@@ -73,8 +73,8 @@
ScrollView* scroll_view = new ScrollView;
scroll_view->SetContents(this);
scroll_view->set_border(Border::CreateSolidBorder(
- 1, ui::NativeTheme::instance()->GetSystemColor(
- ui::NativeTheme::kColorId_UnfocusedBorderColor)));
+ 1, gfx::NativeTheme::instance()->GetSystemColor(
+ gfx::NativeTheme::kColorId_UnfocusedBorderColor)));
return scroll_view;
}
« no previous file with comments | « ui/views/controls/tabbed_pane/native_tabbed_pane_win.cc ('k') | ui/views/controls/textfield/native_textfield_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698