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/desktop_browser_frame_aura.h" | 5 #include "chrome/browser/ui/views/frame/desktop_browser_frame_aura.h" |
6 | 6 |
7 #include "chrome/app/chrome_command_ids.h" | 7 #include "chrome/app/chrome_command_ids.h" |
8 #include "chrome/browser/ui/views/frame/browser_desktop_root_window_host.h" | 8 #include "chrome/browser/ui/views/frame/browser_desktop_root_window_host.h" |
9 #include "chrome/browser/ui/views/frame/browser_view.h" | 9 #include "chrome/browser/ui/views/frame/browser_view.h" |
10 #include "chrome/browser/ui/views/frame/desktop_user_action_handler_aura.h" | 10 #include "chrome/browser/ui/views/frame/desktop_user_action_handler_aura.h" |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 return this; | 86 return this; |
87 } | 87 } |
88 | 88 |
89 bool DesktopBrowserFrameAura::UsesNativeSystemMenu() const { | 89 bool DesktopBrowserFrameAura::UsesNativeSystemMenu() const { |
90 return browser_desktop_root_window_host_->UsesNativeSystemMenu(); | 90 return browser_desktop_root_window_host_->UsesNativeSystemMenu(); |
91 } | 91 } |
92 | 92 |
93 int DesktopBrowserFrameAura::GetMinimizeButtonOffset() const { | 93 int DesktopBrowserFrameAura::GetMinimizeButtonOffset() const { |
94 return browser_desktop_root_window_host_->GetMinimizeButtonOffset(); | 94 return browser_desktop_root_window_host_->GetMinimizeButtonOffset(); |
95 } | 95 } |
96 | |
97 void DesktopBrowserFrameAura::TabStripDisplayModeChanged() { | |
98 } | |
OLD | NEW |