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

Side by Side Diff: ios/clean/chrome/browser/ui/commands/ntp_commands.h

Issue 2785893003: [ios clean] Add placeholder for NTP bookmarks, chrome home and open tabs. (Closed)
Patch Set: Comments 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
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698