crw_viewport_adjustment_container.h 693 B

12345678910111213141516171819
  1. // Copyright 2020 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. #ifndef IOS_WEB_COMMON_CRW_VIEWPORT_ADJUSTMENT_CONTAINER_H_
  5. #define IOS_WEB_COMMON_CRW_VIEWPORT_ADJUSTMENT_CONTAINER_H_
  6. #import "ios/web/common/crw_viewport_adjustment.h"
  7. @class CRWWebViewContentView;
  8. // The container view for CRWViewportAdjustment.
  9. @protocol CRWViewportAdjustmentContainer <NSObject>
  10. // The CRWViewportAdjustment view being displayed.
  11. @property(nonatomic, strong, readonly)
  12. UIView<CRWViewportAdjustment>* fullscreenViewportAdjuster;
  13. @end
  14. #endif // IOS_WEB_COMMON_CRW_VIEWPORT_ADJUSTMENT_CONTAINER_H_