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

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

Issue 2144733005: [WIP] cc: Plumb SurfaceId from clients Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ensure only SurfaceFactoy and tests can update hierarchy Created 4 years, 5 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 | « content/renderer/render_widget.h ('k') | content/test/test_render_view_host.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_TEST_TEST_RENDER_VIEW_HOST_H_ 5 #ifndef CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_
6 #define CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ 6 #define CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 #if defined(OS_MACOSX) 83 #if defined(OS_MACOSX)
84 ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override; 84 ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override;
85 void SetActive(bool active) override; 85 void SetActive(bool active) override;
86 void ShowDefinitionForSelection() override {} 86 void ShowDefinitionForSelection() override {}
87 bool SupportsSpeech() const override; 87 bool SupportsSpeech() const override;
88 void SpeakSelection() override; 88 void SpeakSelection() override;
89 bool IsSpeaking() const override; 89 bool IsSpeaking() const override;
90 void StopSpeaking() override; 90 void StopSpeaking() override;
91 #endif // defined(OS_MACOSX) 91 #endif // defined(OS_MACOSX)
92 void OnSwapCompositorFrame(uint32_t output_surface_id, 92 void OnSwapCompositorFrame(uint32_t output_surface_id,
93 const cc::SurfaceId& surface_id,
93 cc::CompositorFrame frame) override; 94 cc::CompositorFrame frame) override;
94 void ClearCompositorFrame() override {} 95 void ClearCompositorFrame() override {}
95 96
96 // RenderWidgetHostViewBase implementation. 97 // RenderWidgetHostViewBase implementation.
97 void InitAsPopup(RenderWidgetHostView* parent_host_view, 98 void InitAsPopup(RenderWidgetHostView* parent_host_view,
98 const gfx::Rect& bounds) override {} 99 const gfx::Rect& bounds) override {}
99 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override {} 100 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override {}
100 void Focus() override {} 101 void Focus() override {}
101 void SetIsLoading(bool is_loading) override {} 102 void SetIsLoading(bool is_loading) override {}
102 void UpdateCursor(const WebCursor& cursor) override {} 103 void UpdateCursor(const WebCursor& cursor) override {}
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 private: 303 private:
303 typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors> 304 typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors>
304 ScopedSetSupportedScaleFactors; 305 ScopedSetSupportedScaleFactors;
305 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; 306 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_;
306 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); 307 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness);
307 }; 308 };
308 309
309 } // namespace content 310 } // namespace content
310 311
311 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ 312 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_
OLDNEW
« no previous file with comments | « content/renderer/render_widget.h ('k') | content/test/test_render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698