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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 2681833006: [Android] Restart input only once on focus change (Closed)
Patch Set: fixed nit Created 3 years, 10 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_frame_impl.cc ('k') | content/renderer/render_view_impl.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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 // TODO(lfg): Remove once WebViewClient no longer inherits from 268 // TODO(lfg): Remove once WebViewClient no longer inherits from
269 // WebWidgetClient. 269 // WebWidgetClient.
270 void closeWidgetSoon() override; 270 void closeWidgetSoon() override;
271 void convertViewportToWindow(blink::WebRect* rect) override; 271 void convertViewportToWindow(blink::WebRect* rect) override;
272 void convertWindowToViewport(blink::WebFloatRect* rect) override; 272 void convertWindowToViewport(blink::WebFloatRect* rect) override;
273 void didOverscroll(const blink::WebFloatSize& overscrollDelta, 273 void didOverscroll(const blink::WebFloatSize& overscrollDelta,
274 const blink::WebFloatSize& accumulatedOverscroll, 274 const blink::WebFloatSize& accumulatedOverscroll,
275 const blink::WebFloatPoint& positionInViewport, 275 const blink::WebFloatPoint& positionInViewport,
276 const blink::WebFloatSize& velocityInViewport) override; 276 const blink::WebFloatSize& velocityInViewport) override;
277 void hasTouchEventHandlers(bool has_handlers) override; 277 void hasTouchEventHandlers(bool has_handlers) override;
278 void resetInputMethod() override;
279 blink::WebScreenInfo screenInfo() override; 278 blink::WebScreenInfo screenInfo() override;
280 void setToolTipText(const blink::WebString&, 279 void setToolTipText(const blink::WebString&,
281 blink::WebTextDirection hint) override; 280 blink::WebTextDirection hint) override;
282 void setTouchAction(blink::WebTouchAction touchAction) override; 281 void setTouchAction(blink::WebTouchAction touchAction) override;
283 void showVirtualKeyboardOnElementFocus() override; 282 void showVirtualKeyboardOnElementFocus() override;
284 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition, 283 void showUnhandledTapUIIfNeeded(const blink::WebPoint& tappedPosition,
285 const blink::WebNode& tappedNode, 284 const blink::WebNode& tappedNode,
286 bool pageChanged) override; 285 bool pageChanged) override;
287 blink::WebWidgetClient* widgetClient() override; 286 blink::WebWidgetClient* widgetClient() override;
288 287
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 // --------------------------------------------------------------------------- 837 // ---------------------------------------------------------------------------
839 838
840 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_; 839 base::WeakPtrFactory<RenderViewImpl> weak_ptr_factory_;
841 840
842 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 841 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
843 }; 842 };
844 843
845 } // namespace content 844 } // namespace content
846 845
847 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 846 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698