OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_mus.h" | 5 #include "chrome/browser/ui/views/frame/browser_frame_mus.h" |
6 | 6 |
| 7 #include <stdint.h> |
| 8 |
7 #include "chrome/browser/ui/views/frame/browser_frame.h" | 9 #include "chrome/browser/ui/views/frame/browser_frame.h" |
8 #include "chrome/browser/ui/views/frame/browser_view.h" | 10 #include "chrome/browser/ui/views/frame/browser_view.h" |
9 #include "components/mus/public/cpp/window.h" | 11 #include "components/mus/public/cpp/window.h" |
10 #include "components/mus/public/interfaces/window_tree.mojom.h" | 12 #include "components/mus/public/interfaces/window_tree.mojom.h" |
11 #include "mojo/application/public/cpp/application_impl.h" | 13 #include "mojo/application/public/cpp/application_impl.h" |
12 #include "ui/views/mus/window_manager_connection.h" | 14 #include "ui/views/mus/window_manager_connection.h" |
13 #include "ui/views/mus/window_manager_frame_values.h" | 15 #include "ui/views/mus/window_manager_frame_values.h" |
14 | 16 |
15 namespace { | 17 namespace { |
16 | 18 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 } | 62 } |
61 | 63 |
62 int BrowserFrameMus::GetMinimizeButtonOffset() const { | 64 int BrowserFrameMus::GetMinimizeButtonOffset() const { |
63 return 0; | 65 return 0; |
64 } | 66 } |
65 | 67 |
66 void BrowserFrameMus::UpdateClientArea() { | 68 void BrowserFrameMus::UpdateClientArea() { |
67 // BrowserNonClientFrameViewMus::OnBoundsChanged() takes care of updating | 69 // BrowserNonClientFrameViewMus::OnBoundsChanged() takes care of updating |
68 // the insets. | 70 // the insets. |
69 } | 71 } |
OLD | NEW |