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

Side by Side Diff: ios/chrome/browser/ui/browser_ios.h

Issue 2615003002: Use ChromeBrowserStateManager instead of BrowserListIOS. (Closed)
Patch Set: Fix ios_chrome_perftests. Created 3 years, 11 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
« no previous file with comments | « ios/chrome/browser/ui/BUILD.gn ('k') | ios/chrome/browser/ui/browser_list_ios.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2012 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_CHROME_BROWSER_UI_BROWSER_IOS_H_
6 #define IOS_CHROME_BROWSER_UI_BROWSER_IOS_H_
7
8 #import <Foundation/Foundation.h>
9
10 namespace ios {
11 class ChromeBrowserState;
12 }
13
14 @class TabModel;
15
16 // Modeled after chrome/browser/ui/browser, just an abstract interface to
17 // a browser to get the browser state and tabs from but can go into a
18 // BrowserListIOS.
19 @protocol BrowserIOS
20
21 - (ios::ChromeBrowserState*)browserState;
22 - (TabModel*)tabModel;
23
24 @end
25
26 #endif // IOS_CHROME_BROWSER_UI_BROWSER_IOS_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/BUILD.gn ('k') | ios/chrome/browser/ui/browser_list_ios.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698