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_CHROME_BROWSER_UI_BROWSER_VIEW_CONTROLLER_TESTING_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_BROWSER_VIEW_CONTROLLER_TESTING_H_ |
| 7 |
| 8 #import "ios/chrome/browser/ui/browser_view_controller.h" |
| 9 |
| 10 @interface BrowserViewController (TestingAdditions) |
| 11 |
| 12 - (BOOL)testing_isLoading; |
| 13 |
| 14 - (void)testing_focusOmnibox; |
| 15 |
| 16 - (CGRect)testing_shareButtonAnchorRect; |
| 17 |
| 18 @end |
| 19 |
| 20 #endif // IOS_CHROME_BROWSER_UI_BROWSER_VIEW_CONTROLLER_TESTING_H_ |
OLD | NEW |