sky | db3ebc1 | 2015-06-08 20:30:12 | [diff] [blame] | 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. |
| 4 | |
sky | 23aa64e | 2015-09-02 17:26:18 | [diff] [blame] | 5 | #ifndef COMPONENTS_WEB_VIEW_FRAME_USER_DATA_H_ |
| 6 | #define COMPONENTS_WEB_VIEW_FRAME_USER_DATA_H_ |
sky | db3ebc1 | 2015-06-08 20:30:12 | [diff] [blame] | 7 | |
sky | d632f880 | 2015-09-02 21:36:55 | [diff] [blame] | 8 | namespace web_view { |
sky | db3ebc1 | 2015-06-08 20:30:12 | [diff] [blame] | 9 | |
| 10 | // Arbitrary data that may be associated with each frame. |
| 11 | class FrameUserData { |
| 12 | public: |
| 13 | virtual ~FrameUserData() {} |
| 14 | }; |
| 15 | |
sky | d632f880 | 2015-09-02 21:36:55 | [diff] [blame] | 16 | } // namespace web_view |
sky | db3ebc1 | 2015-06-08 20:30:12 | [diff] [blame] | 17 | |
sky | 23aa64e | 2015-09-02 17:26:18 | [diff] [blame] | 18 | #endif // COMPONENTS_WEB_VIEW_FRAME_USER_DATA_H_ |