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

Unified Diff: chrome/browser/ui/views/frame/browser_root_view.cc

Issue 1637203002: [MD] Don't use new OTR native-theming when using a custom browser theme. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: desktop linux works too Created 4 years, 11 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: chrome/browser/ui/views/frame/browser_root_view.cc
diff --git a/chrome/browser/ui/views/frame/browser_root_view.cc b/chrome/browser/ui/views/frame/browser_root_view.cc
index 5bf11e512452d63530bbdc39074ad5b826a90adb..7e467acdfdd7b91383e98a26e3f62be430314380 100644
--- a/chrome/browser/ui/views/frame/browser_root_view.cc
+++ b/chrome/browser/ui/views/frame/browser_root_view.cc
@@ -22,6 +22,14 @@
#include "ui/base/dragdrop/os_exchange_data.h"
#include "ui/base/hit_test.h"
+#if defined(OS_LINUX)
sky 2016/01/27 03:07:31 Do you really need these includes here?
Evan Stade 2016/01/28 00:08:44 no, this is left over from a previous iteration of
+#include "ui/native_theme/native_theme_dark_aura.h"
+#endif
+
+#if defined(OS_WIN)
+#include "ui/native_theme/native_theme_dark_win.h"
+#endif
+
// static
const char BrowserRootView::kViewClassName[] =
"browser/ui/views/frame/BrowserRootView";

Powered by Google App Engine
This is Rietveld 408576698