| 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 #ifndef IOS_CHROME_BROWSER_UI_TOOLS_MENU_TOOLS_MENU_CONTEXT_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_TOOLS_MENU_TOOLS_MENU_CONFIGURATION_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_TOOLS_MENU_TOOLS_MENU_CONTEXT_H_ | 6 #define IOS_CHROME_BROWSER_UI_TOOLS_MENU_TOOLS_MENU_CONFIGURATION_H_ |
| 7 | 7 |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 #import <UIKit/UIKit.h> | 9 #import <UIKit/UIKit.h> |
| 10 | 10 |
| 11 @class ReadingListMenuNotifier; | 11 @class ReadingListMenuNotifier; |
| 12 | 12 |
| 13 namespace web { | 13 namespace web { |
| 14 enum class UserAgentType : short; | 14 enum class UserAgentType : short; |
| 15 } // namespace web | 15 } // namespace web |
| 16 | 16 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 47 | 47 |
| 48 // Initialize a ToolsMenuContext instance with default values. |displayView| is | 48 // Initialize a ToolsMenuContext instance with default values. |displayView| is |
| 49 // the weakly-held parent view within which the popup tools menu using this | 49 // the weakly-held parent view within which the popup tools menu using this |
| 50 // context will be displayed. | 50 // context will be displayed. |
| 51 - (instancetype)initWithDisplayView:(UIView*)displayView | 51 - (instancetype)initWithDisplayView:(UIView*)displayView |
| 52 NS_DESIGNATED_INITIALIZER; | 52 NS_DESIGNATED_INITIALIZER; |
| 53 - (instancetype)init NS_UNAVAILABLE; | 53 - (instancetype)init NS_UNAVAILABLE; |
| 54 | 54 |
| 55 @end | 55 @end |
| 56 | 56 |
| 57 #endif // IOS_CHROME_BROWSER_UI_TOOLS_MENU_TOOLS_MENU_CONTEXT_H_ | 57 #endif // IOS_CHROME_BROWSER_UI_TOOLS_MENU_TOOLS_MENU_CONFIGURATION_H_ |
| OLD | NEW |