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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_android.h

Issue 532733002: [Android] Speculative fix for crash during overscroll effect creation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2125
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_view_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 10
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 size_t end_offset) OVERRIDE; 170 size_t end_offset) OVERRIDE;
171 171
172 // cc::DelegatedFrameResourceCollectionClient implementation. 172 // cc::DelegatedFrameResourceCollectionClient implementation.
173 virtual void UnusedResourcesAreAvailable() OVERRIDE; 173 virtual void UnusedResourcesAreAvailable() OVERRIDE;
174 174
175 // ui::GestureProviderClient implementation. 175 // ui::GestureProviderClient implementation.
176 virtual void OnGestureEvent(const ui::GestureEventData& gesture) OVERRIDE; 176 virtual void OnGestureEvent(const ui::GestureEventData& gesture) OVERRIDE;
177 177
178 // ui::WindowAndroidObserver implementation. 178 // ui::WindowAndroidObserver implementation.
179 virtual void OnCompositingDidCommit() OVERRIDE; 179 virtual void OnCompositingDidCommit() OVERRIDE;
180 virtual void OnAttachCompositor() OVERRIDE {} 180 virtual void OnAttachCompositor() OVERRIDE;
181 virtual void OnDetachCompositor() OVERRIDE; 181 virtual void OnDetachCompositor() OVERRIDE;
182 virtual void OnVSync(base::TimeTicks frame_time, 182 virtual void OnVSync(base::TimeTicks frame_time,
183 base::TimeDelta vsync_period) OVERRIDE; 183 base::TimeDelta vsync_period) OVERRIDE;
184 virtual void OnAnimate(base::TimeTicks begin_frame_time) OVERRIDE; 184 virtual void OnAnimate(base::TimeTicks begin_frame_time) OVERRIDE;
185 185
186 // ImageTransportFactoryAndroidObserver implementation. 186 // ImageTransportFactoryAndroidObserver implementation.
187 virtual void OnLostResources() OVERRIDE; 187 virtual void OnLostResources() OVERRIDE;
188 188
189 // DelegatedFrameEvictor implementation 189 // DelegatedFrameEvictor implementation
190 virtual void EvictDelegatedFrame() OVERRIDE; 190 virtual void EvictDelegatedFrame() OVERRIDE;
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 scoped_ptr<LastFrameInfo> last_frame_info_; 399 scoped_ptr<LastFrameInfo> last_frame_info_;
400 400
401 TextSurroundingSelectionCallback text_surrounding_selection_callback_; 401 TextSurroundingSelectionCallback text_surrounding_selection_callback_;
402 402
403 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 403 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
404 }; 404 };
405 405
406 } // namespace content 406 } // namespace content
407 407
408 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 408 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_widget_host_view_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698