Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: content/renderer/render_widget.h

Issue 1203693003: Setting Accurate ScrollResult from Blink for Elastic Scroll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_RENDERER_RENDER_WIDGET_H_ 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_
6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 10
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 #endif // defined(VIDEO_HOLE) 811 #endif // defined(VIDEO_HOLE)
812 812
813 // A list of RenderFrames associated with this RenderWidget. Notifications 813 // A list of RenderFrames associated with this RenderWidget. Notifications
814 // are sent to each frame in the list for events such as changing 814 // are sent to each frame in the list for events such as changing
815 // visibility state for example. 815 // visibility state for example.
816 base::ObserverList<RenderFrameImpl> render_frames_; 816 base::ObserverList<RenderFrameImpl> render_frames_;
817 817
818 ui::MenuSourceType context_menu_source_type_; 818 ui::MenuSourceType context_menu_source_type_;
819 bool has_host_context_menu_location_; 819 bool has_host_context_menu_location_;
820 gfx::Point host_context_menu_location_; 820 gfx::Point host_context_menu_location_;
821 gfx::Vector2dF latest_overscroll_delta_;
821 822
822 DISALLOW_COPY_AND_ASSIGN(RenderWidget); 823 DISALLOW_COPY_AND_ASSIGN(RenderWidget);
823 }; 824 };
824 825
825 } // namespace content 826 } // namespace content
826 827
827 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ 828 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698