| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_WEB_WEB_STATE_UI_CRW_WEB_CONTROLLER_CONTAINER_VIEW_H_ | 5 #ifndef IOS_WEB_WEB_STATE_UI_CRW_WEB_CONTROLLER_CONTAINER_VIEW_H_ |
| 6 #define IOS_WEB_WEB_STATE_UI_CRW_WEB_CONTROLLER_CONTAINER_VIEW_H_ | 6 #define IOS_WEB_WEB_STATE_UI_CRW_WEB_CONTROLLER_CONTAINER_VIEW_H_ |
| 7 | 7 |
| 8 #import <UIKit/UIKit.h> | 8 #import <UIKit/UIKit.h> |
| 9 | 9 |
| 10 #include "ios/web/public/web_state/ui/crw_content_view.h" | 10 #import "ios/web/public/web_state/ui/crw_content_view.h" |
| 11 | 11 |
| 12 @class CRWWebControllerContainerView; | 12 @class CRWWebControllerContainerView; |
| 13 @class CRWWebViewContentView; | 13 @class CRWWebViewContentView; |
| 14 @class CRWWebViewProxyImpl; | 14 @class CRWWebViewProxyImpl; |
| 15 @protocol CRWNativeContent; | 15 @protocol CRWNativeContent; |
| 16 | 16 |
| 17 @protocol CRWWebControllerContainerViewDelegate<NSObject> | 17 @protocol CRWWebControllerContainerViewDelegate<NSObject> |
| 18 | 18 |
| 19 // Returns the proxy object that's backed by the CRWContentView displayed by | 19 // Returns the proxy object that's backed by the CRWContentView displayed by |
| 20 // |containerView|. | 20 // |containerView|. |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 // Removes |toolbar| as a subview. | 83 // Removes |toolbar| as a subview. |
| 84 - (void)removeToolbar:(UIView*)toolbar; | 84 - (void)removeToolbar:(UIView*)toolbar; |
| 85 | 85 |
| 86 // Removes all toolbars added via |-addToolbar:|. | 86 // Removes all toolbars added via |-addToolbar:|. |
| 87 - (void)removeAllToolbars; | 87 - (void)removeAllToolbars; |
| 88 | 88 |
| 89 @end | 89 @end |
| 90 | 90 |
| 91 #endif // IOS_WEB_WEB_STATE_UI_CRW_WEB_CONTROLLER_CONTAINER_VIEW_H_ | 91 #endif // IOS_WEB_WEB_STATE_UI_CRW_WEB_CONTROLLER_CONTAINER_VIEW_H_ |
| OLD | NEW |