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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_android.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_ANDROID_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 10
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; 91 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE;
92 virtual void Show() OVERRIDE; 92 virtual void Show() OVERRIDE;
93 virtual void Hide() OVERRIDE; 93 virtual void Hide() OVERRIDE;
94 virtual bool IsShowing() OVERRIDE; 94 virtual bool IsShowing() OVERRIDE;
95 virtual gfx::Rect GetViewBounds() const OVERRIDE; 95 virtual gfx::Rect GetViewBounds() const OVERRIDE;
96 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; 96 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE;
97 virtual float GetOverdrawBottomHeight() const OVERRIDE; 97 virtual float GetOverdrawBottomHeight() const OVERRIDE;
98 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; 98 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE;
99 virtual void SetIsLoading(bool is_loading) OVERRIDE; 99 virtual void SetIsLoading(bool is_loading) OVERRIDE;
100 virtual void TextInputTypeChanged(ui::TextInputType type, 100 virtual void TextInputTypeChanged(ui::TextInputType type,
101 bool can_compose_inline, 101 ui::TextInputMode input_mode,
102 ui::TextInputMode input_mode) OVERRIDE; 102 bool can_compose_inline) OVERRIDE;
103 virtual void ImeCancelComposition() OVERRIDE; 103 virtual void ImeCancelComposition() OVERRIDE;
104 virtual void DidUpdateBackingStore( 104 virtual void DidUpdateBackingStore(
105 const gfx::Rect& scroll_rect, 105 const gfx::Rect& scroll_rect,
106 const gfx::Vector2d& scroll_delta, 106 const gfx::Vector2d& scroll_delta,
107 const std::vector<gfx::Rect>& copy_rects, 107 const std::vector<gfx::Rect>& copy_rects,
108 const ui::LatencyInfo& latency_info) OVERRIDE; 108 const ui::LatencyInfo& latency_info) OVERRIDE;
109 virtual void RenderProcessGone(base::TerminationStatus status, 109 virtual void RenderProcessGone(base::TerminationStatus status,
110 int error_code) OVERRIDE; 110 int error_code) OVERRIDE;
111 virtual void Destroy() OVERRIDE; 111 virtual void Destroy() OVERRIDE;
112 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; 112 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE;
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 // Used to render overscroll overlays. 321 // Used to render overscroll overlays.
322 bool overscroll_effect_enabled_; 322 bool overscroll_effect_enabled_;
323 scoped_ptr<OverscrollGlow> overscroll_effect_; 323 scoped_ptr<OverscrollGlow> overscroll_effect_;
324 324
325 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 325 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
326 }; 326 };
327 327
328 } // namespace content 328 } // namespace content
329 329
330 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 330 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698