Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: ios/chrome/browser/ui/tools_menu/tools_menu_configuration.h

Issue 2789433006: Implement request mobile site. (Closed)
Patch Set: Fix failing eg tests on iPad. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698