Chromium Code Reviews| 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() { |