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

Side by Side Diff: content/test/web_layer_tree_view_impl_for_testing.h

Issue 429743003: Rename Animate as Begin(Main)Frame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix. Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_ 5 #ifndef CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_
6 #define CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_ 6 #define CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "cc/trees/layer_tree_host_client.h" 9 #include "cc/trees/layer_tree_host_client.h"
10 #include "cc/trees/layer_tree_host_single_thread_client.h" 10 #include "cc/trees/layer_tree_host_single_thread_client.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 const blink::WebLayer* outerViewportScrollLayer) OVERRIDE; 60 const blink::WebLayer* outerViewportScrollLayer) OVERRIDE;
61 virtual void clearViewportLayers() OVERRIDE; 61 virtual void clearViewportLayers() OVERRIDE;
62 virtual void registerSelection( 62 virtual void registerSelection(
63 const blink::WebSelectionBound& start, 63 const blink::WebSelectionBound& start,
64 const blink::WebSelectionBound& end) OVERRIDE; 64 const blink::WebSelectionBound& end) OVERRIDE;
65 virtual void clearSelection() OVERRIDE; 65 virtual void clearSelection() OVERRIDE;
66 66
67 // cc::LayerTreeHostClient implementation. 67 // cc::LayerTreeHostClient implementation.
68 virtual void WillBeginMainFrame(int frame_id) OVERRIDE {} 68 virtual void WillBeginMainFrame(int frame_id) OVERRIDE {}
69 virtual void DidBeginMainFrame() OVERRIDE {} 69 virtual void DidBeginMainFrame() OVERRIDE {}
70 virtual void Animate(base::TimeTicks frame_begin_time) OVERRIDE {} 70 virtual void BeginMainFrame(const cc::BeginFrameArgs& args) OVERRIDE {}
71 virtual void Layout() OVERRIDE; 71 virtual void Layout() OVERRIDE;
72 virtual void ApplyScrollAndScale(const gfx::Vector2d& scroll_delta, 72 virtual void ApplyScrollAndScale(const gfx::Vector2d& scroll_delta,
73 float page_scale) OVERRIDE; 73 float page_scale) OVERRIDE;
74 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) 74 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback)
75 OVERRIDE; 75 OVERRIDE;
76 virtual void DidInitializeOutputSurface() OVERRIDE {} 76 virtual void DidInitializeOutputSurface() OVERRIDE {}
77 virtual void WillCommit() OVERRIDE {} 77 virtual void WillCommit() OVERRIDE {}
78 virtual void DidCommit() OVERRIDE {} 78 virtual void DidCommit() OVERRIDE {}
79 virtual void DidCommitAndDrawFrame() OVERRIDE {} 79 virtual void DidCommitAndDrawFrame() OVERRIDE {}
80 virtual void DidCompleteSwapBuffers() OVERRIDE {} 80 virtual void DidCompleteSwapBuffers() OVERRIDE {}
81 81
82 // cc::LayerTreeHostSingleThreadClient implementation. 82 // cc::LayerTreeHostSingleThreadClient implementation.
83 virtual void ScheduleComposite() OVERRIDE {} 83 virtual void ScheduleComposite() OVERRIDE {}
84 virtual void ScheduleAnimation() OVERRIDE {} 84 virtual void ScheduleAnimation() OVERRIDE {}
85 virtual void DidPostSwapBuffers() OVERRIDE {} 85 virtual void DidPostSwapBuffers() OVERRIDE {}
86 virtual void DidAbortSwapBuffers() OVERRIDE {} 86 virtual void DidAbortSwapBuffers() OVERRIDE {}
87 87
88 private: 88 private:
89 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; 89 scoped_ptr<cc::LayerTreeHost> layer_tree_host_;
90 90
91 DISALLOW_COPY_AND_ASSIGN(WebLayerTreeViewImplForTesting); 91 DISALLOW_COPY_AND_ASSIGN(WebLayerTreeViewImplForTesting);
92 }; 92 };
93 93
94 } // namespace content 94 } // namespace content
95 95
96 #endif // CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_ 96 #endif // CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_
OLDNEW
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | mojo/examples/compositor_app/compositor_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698