| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_NTP_GOOGLE_LANDING_CONSUMER_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_CONSUMER_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_CONSUMER_H_ | 6 #define IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_CONSUMER_H_ |
| 7 | 7 |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 | 9 |
| 10 // TODO(crbug.com/694750): Remove these two when the types below are changed. | 10 // TODO(crbug.com/694750): Remove these two when the types below are changed. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 // Tells the consumer a most visited icon was updated. | 51 // Tells the consumer a most visited icon was updated. |
| 52 - (void)mostVisitedIconMadeAvailableAtIndex:(NSUInteger)index; | 52 - (void)mostVisitedIconMadeAvailableAtIndex:(NSUInteger)index; |
| 53 | 53 |
| 54 // TODO(crbug.com/694750): These two calls can be made with dispatcher instead. | 54 // TODO(crbug.com/694750): These two calls can be made with dispatcher instead. |
| 55 // The location bar has lost focus. | 55 // The location bar has lost focus. |
| 56 - (void)locationBarResignsFirstResponder; | 56 - (void)locationBarResignsFirstResponder; |
| 57 | 57 |
| 58 // Tell location bar has taken focus. | 58 // Tell location bar has taken focus. |
| 59 - (void)locationBarBecomesFirstResponder; | 59 - (void)locationBarBecomesFirstResponder; |
| 60 | 60 |
| 61 // TODO(crbug.com/694750): This call will be removed once dispatching is | |
| 62 // available. | |
| 63 // Asks the consumer to execute a chrome command. | |
| 64 - (void)chromeExecuteCommand:(id)sender; | |
| 65 | |
| 66 @end | 61 @end |
| 67 | 62 |
| 68 #endif // IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_CONSUMER_H_ | 63 #endif // IOS_CHROME_BROWSER_UI_NTP_GOOGLE_LANDING_CONSUMER_H_ |
| OLD | NEW |