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

Side by Side Diff: android_webview/browser/hardware_renderer.h

Issue 715733002: [Android] Show autofill popup after animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 11 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 | cc/test/fake_layer_tree_host_client.h » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_HARDWARE_RENDERER_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_
6 #define ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_ 6 #define ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_
7 7
8 #include "android_webview/browser/parent_compositor_draw_constraints.h" 8 #include "android_webview/browser/parent_compositor_draw_constraints.h"
9 #include "android_webview/browser/shared_renderer_state.h" 9 #include "android_webview/browser/shared_renderer_state.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 virtual void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta, 52 virtual void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta,
53 float page_scale, 53 float page_scale,
54 float top_controls_delta) override {} 54 float top_controls_delta) override {}
55 virtual void RequestNewOutputSurface() override; 55 virtual void RequestNewOutputSurface() override;
56 virtual void DidInitializeOutputSurface() override {} 56 virtual void DidInitializeOutputSurface() override {}
57 virtual void DidFailToInitializeOutputSurface() override; 57 virtual void DidFailToInitializeOutputSurface() override;
58 virtual void WillCommit() override {} 58 virtual void WillCommit() override {}
59 virtual void DidCommit() override {} 59 virtual void DidCommit() override {}
60 virtual void DidCommitAndDrawFrame() override {} 60 virtual void DidCommitAndDrawFrame() override {}
61 virtual void DidCompleteSwapBuffers() override {} 61 virtual void DidCompleteSwapBuffers() override {}
62 virtual void DidCompletePageScaleAnimation() override {}
62 63
63 // cc::LayerTreeHostSingleThreadClient overrides. 64 // cc::LayerTreeHostSingleThreadClient overrides.
64 virtual void DidPostSwapBuffers() override {} 65 virtual void DidPostSwapBuffers() override {}
65 virtual void DidAbortSwapBuffers() override {} 66 virtual void DidAbortSwapBuffers() override {}
66 67
67 // cc::DelegatedFrameResourceCollectionClient overrides. 68 // cc::DelegatedFrameResourceCollectionClient overrides.
68 virtual void UnusedResourcesAreAvailable() override; 69 virtual void UnusedResourcesAreAvailable() override;
69 70
70 private: 71 private:
71 void SetFrameData(); 72 void SetFrameData();
(...skipping 30 matching lines...) Expand all
102 ParentOutputSurface* output_surface_; 103 ParentOutputSurface* output_surface_;
103 104
104 ParentCompositorDrawConstraints draw_constraints_; 105 ParentCompositorDrawConstraints draw_constraints_;
105 106
106 DISALLOW_COPY_AND_ASSIGN(HardwareRenderer); 107 DISALLOW_COPY_AND_ASSIGN(HardwareRenderer);
107 }; 108 };
108 109
109 } // namespace android_webview 110 } // namespace android_webview
110 111
111 #endif // ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_ 112 #endif // ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_
OLDNEW
« no previous file with comments | « no previous file | cc/test/fake_layer_tree_host_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698