| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "apps/ui/views/app_window_frame_view.h" | 5 #include "apps/ui/views/app_window_frame_view.h" |
| 6 | 6 |
| 7 #include "apps/ui/native_app_window.h" | |
| 8 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "extensions/browser/app_window/native_app_window.h" |
| 9 #include "extensions/common/draggable_region.h" | 9 #include "extensions/common/draggable_region.h" |
| 10 #include "grit/theme_resources.h" | 10 #include "grit/theme_resources.h" |
| 11 #include "grit/ui_strings.h" // Accessibility names | 11 #include "grit/ui_strings.h" // Accessibility names |
| 12 #include "third_party/skia/include/core/SkPaint.h" | 12 #include "third_party/skia/include/core/SkPaint.h" |
| 13 #include "third_party/skia/include/core/SkRegion.h" | 13 #include "third_party/skia/include/core/SkRegion.h" |
| 14 #include "ui/base/hit_test.h" | 14 #include "ui/base/hit_test.h" |
| 15 #include "ui/base/l10n/l10n_util.h" | 15 #include "ui/base/l10n/l10n_util.h" |
| 16 #include "ui/base/resource/resource_bundle.h" | 16 #include "ui/base/resource/resource_bundle.h" |
| 17 #include "ui/gfx/canvas.h" | 17 #include "ui/gfx/canvas.h" |
| 18 #include "ui/gfx/color_utils.h" | 18 #include "ui/gfx/color_utils.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 31 const int kCaptionHeight = 25; | 31 const int kCaptionHeight = 25; |
| 32 | 32 |
| 33 } // namespace | 33 } // namespace |
| 34 | 34 |
| 35 namespace apps { | 35 namespace apps { |
| 36 | 36 |
| 37 const char AppWindowFrameView::kViewClassName[] = | 37 const char AppWindowFrameView::kViewClassName[] = |
| 38 "browser/ui/views/extensions/AppWindowFrameView"; | 38 "browser/ui/views/extensions/AppWindowFrameView"; |
| 39 | 39 |
| 40 AppWindowFrameView::AppWindowFrameView(views::Widget* widget, | 40 AppWindowFrameView::AppWindowFrameView(views::Widget* widget, |
| 41 NativeAppWindow* window, | 41 extensions::NativeAppWindow* window, |
| 42 bool draw_frame, | 42 bool draw_frame, |
| 43 const SkColor& active_frame_color, | 43 const SkColor& active_frame_color, |
| 44 const SkColor& inactive_frame_color) | 44 const SkColor& inactive_frame_color) |
| 45 : widget_(widget), | 45 : widget_(widget), |
| 46 window_(window), | 46 window_(window), |
| 47 draw_frame_(draw_frame), | 47 draw_frame_(draw_frame), |
| 48 active_frame_color_(active_frame_color), | 48 active_frame_color_(active_frame_color), |
| 49 inactive_frame_color_(inactive_frame_color), | 49 inactive_frame_color_(inactive_frame_color), |
| 50 close_button_(NULL), | 50 close_button_(NULL), |
| 51 maximize_button_(NULL), | 51 maximize_button_(NULL), |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 restore_button_->SetImage( | 391 restore_button_->SetImage( |
| 392 views::CustomButton::STATE_NORMAL, | 392 views::CustomButton::STATE_NORMAL, |
| 393 rb.GetNativeImageNamed(IDR_APP_WINDOW_RESTORE).ToImageSkia()); | 393 rb.GetNativeImageNamed(IDR_APP_WINDOW_RESTORE).ToImageSkia()); |
| 394 minimize_button_->SetImage( | 394 minimize_button_->SetImage( |
| 395 views::CustomButton::STATE_NORMAL, | 395 views::CustomButton::STATE_NORMAL, |
| 396 rb.GetNativeImageNamed(IDR_APP_WINDOW_MINIMIZE).ToImageSkia()); | 396 rb.GetNativeImageNamed(IDR_APP_WINDOW_MINIMIZE).ToImageSkia()); |
| 397 } | 397 } |
| 398 } | 398 } |
| 399 | 399 |
| 400 } // namespace apps | 400 } // namespace apps |
| OLD | NEW |