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

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

Issue 23604019: reorder RenderWidgetHostViewPort::TextInputTypeChanged argument (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
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_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 virtual void WasShown() OVERRIDE; 168 virtual void WasShown() OVERRIDE;
169 virtual void WasHidden() OVERRIDE; 169 virtual void WasHidden() OVERRIDE;
170 virtual void MovePluginWindows( 170 virtual void MovePluginWindows(
171 const gfx::Vector2d& scroll_offset, 171 const gfx::Vector2d& scroll_offset,
172 const std::vector<WebPluginGeometry>& moves) OVERRIDE; 172 const std::vector<WebPluginGeometry>& moves) OVERRIDE;
173 virtual void Focus() OVERRIDE; 173 virtual void Focus() OVERRIDE;
174 virtual void Blur() OVERRIDE; 174 virtual void Blur() OVERRIDE;
175 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; 175 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE;
176 virtual void SetIsLoading(bool is_loading) OVERRIDE; 176 virtual void SetIsLoading(bool is_loading) OVERRIDE;
177 virtual void TextInputTypeChanged(ui::TextInputType type, 177 virtual void TextInputTypeChanged(ui::TextInputType type,
178 bool can_compose_inline, 178 ui::TextInputMode input_mode,
179 ui::TextInputMode input_mode) OVERRIDE; 179 bool can_compose_inline) OVERRIDE;
180 virtual void ImeCancelComposition() OVERRIDE; 180 virtual void ImeCancelComposition() OVERRIDE;
181 virtual void ImeCompositionRangeChanged( 181 virtual void ImeCompositionRangeChanged(
182 const ui::Range& range, 182 const ui::Range& range,
183 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; 183 const std::vector<gfx::Rect>& character_bounds) OVERRIDE;
184 virtual void DidUpdateBackingStore( 184 virtual void DidUpdateBackingStore(
185 const gfx::Rect& scroll_rect, 185 const gfx::Rect& scroll_rect,
186 const gfx::Vector2d& scroll_delta, 186 const gfx::Vector2d& scroll_delta,
187 const std::vector<gfx::Rect>& copy_rects, 187 const std::vector<gfx::Rect>& copy_rects,
188 const ui::LatencyInfo& latency_info) OVERRIDE; 188 const ui::LatencyInfo& latency_info) OVERRIDE;
189 virtual void RenderProcessGone(base::TerminationStatus status, 189 virtual void RenderProcessGone(base::TerminationStatus status,
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 TouchEditingClient* touch_editing_client_; 699 TouchEditingClient* touch_editing_client_;
700 700
701 ui::LatencyInfo software_latency_info_; 701 ui::LatencyInfo software_latency_info_;
702 702
703 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 703 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
704 }; 704 };
705 705
706 } // namespace content 706 } // namespace content
707 707
708 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 708 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698