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

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

Issue 2045363002: Routing IME Result Calls to the Correct RenderWidgetHost (Aura Only) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Formatting Created 4 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
« no previous file with comments | « content/public/test/text_input_test_utils.cc ('k') | no next file » | 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 std::unique_ptr<cc::CompositorFrame> frame) override; 94 std::unique_ptr<cc::CompositorFrame> frame) override;
95 void ClearCompositorFrame() override {} 95 void ClearCompositorFrame() override {}
96 96
97 // RenderWidgetHostViewBase implementation. 97 // RenderWidgetHostViewBase implementation.
98 void InitAsPopup(RenderWidgetHostView* parent_host_view, 98 void InitAsPopup(RenderWidgetHostView* parent_host_view,
99 const gfx::Rect& bounds) override {} 99 const gfx::Rect& bounds) override {}
100 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override {} 100 void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override {}
101 void Focus() override {} 101 void Focus() override {}
102 void SetIsLoading(bool is_loading) override {} 102 void SetIsLoading(bool is_loading) override {}
103 void UpdateCursor(const WebCursor& cursor) override {} 103 void UpdateCursor(const WebCursor& cursor) override {}
104 void TextInputStateChanged(const TextInputState& params) override {}
105 void ImeCancelComposition() override {} 104 void ImeCancelComposition() override {}
106 void ImeCompositionRangeChanged( 105 void ImeCompositionRangeChanged(
107 const gfx::Range& range, 106 const gfx::Range& range,
108 const std::vector<gfx::Rect>& character_bounds) override {} 107 const std::vector<gfx::Rect>& character_bounds) override {}
109 void RenderProcessGone(base::TerminationStatus status, 108 void RenderProcessGone(base::TerminationStatus status,
110 int error_code) override; 109 int error_code) override;
111 void Destroy() override; 110 void Destroy() override;
112 void SetTooltipText(const base::string16& tooltip_text) override {} 111 void SetTooltipText(const base::string16& tooltip_text) override {}
113 void SelectionBoundsChanged( 112 void SelectionBoundsChanged(
114 const ViewHostMsg_SelectionBounds_Params& params) override {} 113 const ViewHostMsg_SelectionBounds_Params& params) override {}
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 private: 309 private:
311 typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors> 310 typedef std::unique_ptr<ui::test::ScopedSetSupportedScaleFactors>
312 ScopedSetSupportedScaleFactors; 311 ScopedSetSupportedScaleFactors;
313 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_; 312 ScopedSetSupportedScaleFactors scoped_set_supported_scale_factors_;
314 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness); 313 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImplTestHarness);
315 }; 314 };
316 315
317 } // namespace content 316 } // namespace content
318 317
319 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_ 318 #endif // CONTENT_TEST_TEST_RENDER_VIEW_HOST_H_
OLDNEW
« no previous file with comments | « content/public/test/text_input_test_utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698