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 ANDROID_WEBVIEW_BROWSER_CHILD_FRAME_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_CHILD_FRAME_H_ |
6 #define ANDROID_WEBVIEW_BROWSER_CHILD_FRAME_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_CHILD_FRAME_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 const gfx::Transform transform_for_tile_priority; | 49 const gfx::Transform transform_for_tile_priority; |
50 const bool offscreen_pre_raster; | 50 const bool offscreen_pre_raster; |
51 const bool is_layer; | 51 const bool is_layer; |
52 | 52 |
53 private: | 53 private: |
54 DISALLOW_COPY_AND_ASSIGN(ChildFrame); | 54 DISALLOW_COPY_AND_ASSIGN(ChildFrame); |
55 }; | 55 }; |
56 | 56 |
57 using ChildFrameQueue = std::deque<std::unique_ptr<ChildFrame>>; | 57 using ChildFrameQueue = std::deque<std::unique_ptr<ChildFrame>>; |
58 | 58 |
59 } // namespace webview | 59 } // namespace android_webview |
60 | 60 |
61 #endif // ANDROID_WEBVIEW_BROWSER_CHILD_FRAME_H_ | 61 #endif // ANDROID_WEBVIEW_BROWSER_CHILD_FRAME_H_ |
OLD | NEW |