Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #import "ios/clean/chrome/browser/ui/tools/menu_view_controller.h" | 5 #import "ios/clean/chrome/browser/ui/tools/menu_view_controller.h" |
| 6 | 6 |
| 7 #include "base/i18n/rtl.h" | 7 #include "base/i18n/rtl.h" |
| 8 #import "base/logging.h" | 8 #import "base/logging.h" |
| 9 #import "base/mac/foundation_util.h" | 9 #import "base/mac/foundation_util.h" |
| 10 #import "base/macros.h" | 10 #import "base/macros.h" |
| 11 #import "ios/chrome/browser/ui/rtl_geometry.h" | 11 #import "ios/chrome/browser/ui/rtl_geometry.h" |
| 12 #import "ios/clean/chrome/browser/ui/commands/find_in_page_visibility_commands.h " | |
|
sczs
2017/05/16 20:31:03
Just some cleanup
| |
| 13 #import "ios/clean/chrome/browser/ui/commands/navigation_commands.h" | 12 #import "ios/clean/chrome/browser/ui/commands/navigation_commands.h" |
| 14 #import "ios/clean/chrome/browser/ui/commands/tools_menu_commands.h" | 13 #import "ios/clean/chrome/browser/ui/commands/tools_menu_commands.h" |
| 15 #import "ios/clean/chrome/browser/ui/toolbar/toolbar_button.h" | 14 #import "ios/clean/chrome/browser/ui/toolbar/toolbar_button.h" |
| 16 #import "ios/clean/chrome/browser/ui/tools/menu_overflow_controls_stackview.h" | 15 #import "ios/clean/chrome/browser/ui/tools/menu_overflow_controls_stackview.h" |
| 17 #import "ios/clean/chrome/browser/ui/tools/tools_actions.h" | 16 #import "ios/clean/chrome/browser/ui/tools/tools_actions.h" |
| 18 #import "ios/clean/chrome/browser/ui/tools/tools_menu_item.h" | 17 #import "ios/clean/chrome/browser/ui/tools/tools_menu_item.h" |
| 19 #import "ios/third_party/material_components_ios/src/components/Typography/src/M aterialTypography.h" | 18 #import "ios/third_party/material_components_ios/src/components/Typography/src/M aterialTypography.h" |
| 20 | 19 |
| 21 #if !defined(__has_feature) || !__has_feature(objc_arc) | 20 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 22 #error "This file requires ARC support." | 21 #error "This file requires ARC support." |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 138 | 137 |
| 139 - (void)setToolsMenuItems:(NSArray*)menuItems { | 138 - (void)setToolsMenuItems:(NSArray*)menuItems { |
| 140 _menuItems = menuItems; | 139 _menuItems = menuItems; |
| 141 } | 140 } |
| 142 | 141 |
| 143 - (void)displayOverflowControls:(BOOL)displayOverflowControls { | 142 - (void)displayOverflowControls:(BOOL)displayOverflowControls { |
| 144 self.displayOverflowControls = displayOverflowControls; | 143 self.displayOverflowControls = displayOverflowControls; |
| 145 } | 144 } |
| 146 | 145 |
| 147 @end | 146 @end |
| OLD | NEW |