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

Unified Diff: chrome/browser/chromeos/frame/bubble_window_views.cc

Issue 7850026: Aura under Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: White spaces Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/frame/bubble_window_views.cc
diff --git a/chrome/browser/chromeos/frame/bubble_window_views.cc b/chrome/browser/chromeos/frame/bubble_window_views.cc
index 7a2b971e9a6c7e8cc572796824bc4fd1b1a372e4..c9b375d59b6221385baa171e33c500dccacfd91c 100644
--- a/chrome/browser/chromeos/frame/bubble_window_views.cc
+++ b/chrome/browser/chromeos/frame/bubble_window_views.cc
@@ -19,11 +19,13 @@ BubbleWindowViews::BubbleWindowViews(BubbleWindowStyle style)
}
void BubbleWindowViews::SetBackgroundColor() {
- // TODO(saintlou): Once Views are truly pure the code below needs to be
+#if !defined(USE_AURA)
+ // TODO(saintlou): Once Views are truly pure the code below needs to be
oshima 2011/09/19 15:52:39 indent
Emmanuel Saint-loubert-Bié 2011/09/19 20:15:36 Done.
// removed and replaced by the corresponding Views code.
GdkColor background_color =
gfx::SkColorToGdkColor(kBubbleWindowBackgroundColor);
gtk_widget_modify_bg(GetNativeView(), GTK_STATE_NORMAL, &background_color);
+#endif
}
views::NonClientFrameView* BubbleWindowViews::CreateNonClientFrameView() {

Powered by Google App Engine
This is Rietveld 408576698