| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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/harmony/chrome_layout_provider.h" | 5 #include "chrome/browser/ui/views/harmony/chrome_layout_provider.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "chrome/browser/ui/views/harmony/chrome_typography.h" | 9 #include "chrome/browser/ui/views/harmony/chrome_typography.h" |
| 10 #include "chrome/browser/ui/views/harmony/harmony_layout_provider.h" | 10 #include "chrome/browser/ui/views/harmony/harmony_layout_provider.h" |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 return true; | 76 return true; |
| 77 } | 77 } |
| 78 | 78 |
| 79 bool ChromeLayoutProvider::ShouldShowWindowIcon() const { | 79 bool ChromeLayoutProvider::ShouldShowWindowIcon() const { |
| 80 return true; | 80 return true; |
| 81 } | 81 } |
| 82 | 82 |
| 83 bool ChromeLayoutProvider::IsHarmonyMode() const { | 83 bool ChromeLayoutProvider::IsHarmonyMode() const { |
| 84 return false; | 84 return false; |
| 85 } | 85 } |
| 86 | |
| 87 int ChromeLayoutProvider::GetDialogPreferredWidth(DialogWidth width) const { | |
| 88 return 0; | |
| 89 } | |
| OLD | NEW |