| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/ui/views/frame/browser_frame_aura.h" | 5 #include "chrome/browser/ui/views/frame/browser_frame_aura.h" |
| 6 | 6 |
| 7 #include "ash/ash_switches.h" | 7 #include "ash/ash_switches.h" |
| 8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "chrome/browser/chromeos/status/status_area_view.h" | 10 #include "chrome/browser/chromeos/status/status_area_view.h" |
| 11 #include "chrome/browser/themes/theme_service.h" | 11 #include "chrome/browser/themes/theme_service.h" |
| 12 #include "chrome/browser/ui/views/aura/chrome_shell_delegate.h" | 12 #include "chrome/browser/ui/views/ash/chrome_shell_delegate.h" |
| 13 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view_aura.h" | 13 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view_aura.h" |
| 14 #include "chrome/browser/ui/views/frame/browser_view.h" | 14 #include "chrome/browser/ui/views/frame/browser_view.h" |
| 15 #include "grit/theme_resources_standard.h" | 15 #include "grit/theme_resources_standard.h" |
| 16 #include "third_party/skia/include/core/SkBitmap.h" | 16 #include "third_party/skia/include/core/SkBitmap.h" |
| 17 #include "third_party/skia/include/core/SkCanvas.h" | 17 #include "third_party/skia/include/core/SkCanvas.h" |
| 18 #include "third_party/skia/include/core/SkColor.h" | 18 #include "third_party/skia/include/core/SkColor.h" |
| 19 #include "ui/aura/client/aura_constants.h" | 19 #include "ui/aura/client/aura_constants.h" |
| 20 #include "ui/aura/window.h" | 20 #include "ui/aura/window.h" |
| 21 #include "ui/aura/window_observer.h" | 21 #include "ui/aura/window_observer.h" |
| 22 #include "ui/base/theme_provider.h" | 22 #include "ui/base/theme_provider.h" |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 | 323 |
| 324 //////////////////////////////////////////////////////////////////////////////// | 324 //////////////////////////////////////////////////////////////////////////////// |
| 325 // NativeBrowserFrame, public: | 325 // NativeBrowserFrame, public: |
| 326 | 326 |
| 327 // static | 327 // static |
| 328 NativeBrowserFrame* NativeBrowserFrame::CreateNativeBrowserFrame( | 328 NativeBrowserFrame* NativeBrowserFrame::CreateNativeBrowserFrame( |
| 329 BrowserFrame* browser_frame, | 329 BrowserFrame* browser_frame, |
| 330 BrowserView* browser_view) { | 330 BrowserView* browser_view) { |
| 331 return new BrowserFrameAura(browser_frame, browser_view); | 331 return new BrowserFrameAura(browser_frame, browser_view); |
| 332 } | 332 } |
| OLD | NEW |