Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_NTP_COMMANDS_H_ | |
| 6 #define IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_NTP_COMMANDS_H_ | |
| 7 | |
| 8 // ====== New Architecture ===== | |
|
marq (ping after 24h)
2017/04/05 12:22:48
Remove the banner.
justincohen
2017/04/05 19:28:23
Done.
| |
| 9 // = This code is only used in the new iOS Chrome architecture. = | |
| 10 // ============================================================================ | |
| 11 | |
| 12 // Command protocol for commands relating to the Settings UI. | |
| 13 // (Commands are for communicating into or within the coordinator layer). | |
| 14 @protocol NTPCommands | |
| 15 // Start a Chrome Home panel. | |
|
marq (ping after 24h)
2017/04/05 12:22:48
s/start/show everywhere?
justincohen
2017/04/05 19:28:23
Done.
| |
| 16 - (void)startNTPHomePanel; | |
| 17 // Start an incognito panel. | |
| 18 - (void)startNTPIncognitoPanel; | |
| 19 // Start a bookmarks panel on iPad or present a bookmarks panel on iPhone. | |
| 20 - (void)startNTPBookmarksPanel; | |
| 21 // Start a open tabs panel on iPad or present a bookmarks panel on iPhone. | |
| 22 - (void)startNTPOpenTabsPanel; | |
| 23 @end | |
| 24 | |
| 25 #endif // IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_NTP_COMMANDS_H_ | |
| OLD | NEW |