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
3 // found in the LICENSE file.
5 #ifndef IOS_WEB_WEB_STATE_FRAME_INFO_H_
6 #define IOS_WEB_WEB_STATE_FRAME_INFO_H_
10 // Data Transfer Object which encapsulates information about a frame.
12 explicit FrameInfo(bool main_frame
) : is_main_frame(main_frame
) {}
13 // true if frame is main frame, false if subframe.
19 #endif // IOS_WEB_WEB_STATE_FRAME_INFO_H_