blob: 3ef74844b83b47755f7f999c95bffc63f101ffd4 [file] [log] [blame]
skydb3ebc12015-06-08 20:30:121// 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
sky23aa64e2015-09-02 17:26:185#ifndef COMPONENTS_WEB_VIEW_FRAME_USER_DATA_H_
6#define COMPONENTS_WEB_VIEW_FRAME_USER_DATA_H_
skydb3ebc12015-06-08 20:30:127
skyd632f8802015-09-02 21:36:558namespace web_view {
skydb3ebc12015-06-08 20:30:129
10// Arbitrary data that may be associated with each frame.
11class FrameUserData {
12 public:
13 virtual ~FrameUserData() {}
14};
15
skyd632f8802015-09-02 21:36:5516} // namespace web_view
skydb3ebc12015-06-08 20:30:1217
sky23aa64e2015-09-02 17:26:1818#endif // COMPONENTS_WEB_VIEW_FRAME_USER_DATA_H_