| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index e8728f4f292232d4982d2300f6d6c78d36769b3b..f41b8ee8355bbab1d52db554b30e503093818234 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -1135,6 +1135,13 @@ class RenderViewImpl : public RenderWidget,
|
| std::set<gfx::PluginWindowHandle> fake_plugin_window_handles_;
|
| #endif
|
|
|
| + // When this view is composited, the context used for compositing may or may
|
| + // not support the GL_CHROMIUM_swapbuffers_complete_callback extension. Since
|
| + // querying for the existence of this extension is expensive we cache the
|
| + // result. These are used to implement SupportsAsynchronousSwapBuffers().
|
| + bool context_has_swapbuffers_complete_callback_;
|
| + bool queried_for_swapbuffers_complete_callback_;
|
| +
|
| // Helper objects ------------------------------------------------------------
|
|
|
| RendererWebCookieJarImpl cookie_jar_;
|
|
|