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

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

Issue 715733002: [Android] Show autofill popup after animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
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 <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 void GetCompositionCharacterBounds( 530 void GetCompositionCharacterBounds(
531 std::vector<gfx::Rect>* character_bounds) override; 531 std::vector<gfx::Rect>* character_bounds) override;
532 void GetCompositionRange(gfx::Range* range) override; 532 void GetCompositionRange(gfx::Range* range) override;
533 #endif 533 #endif
534 bool CanComposeInline() override; 534 bool CanComposeInline() override;
535 void DidCommitCompositorFrame() override; 535 void DidCommitCompositorFrame() override;
536 void InstrumentWillBeginFrame(int frame_id) override; 536 void InstrumentWillBeginFrame(int frame_id) override;
537 void InstrumentDidBeginFrame() override; 537 void InstrumentDidBeginFrame() override;
538 void InstrumentDidCancelFrame() override; 538 void InstrumentDidCancelFrame() override;
539 void InstrumentWillComposite() override; 539 void InstrumentWillComposite() override;
540 void DidCompletePageScaleAnimation() override;
540 541
541 protected: 542 protected:
542 explicit RenderViewImpl(RenderViewImplParams* params); 543 explicit RenderViewImpl(RenderViewImplParams* params);
543 544
544 void Initialize(RenderViewImplParams* params); 545 void Initialize(RenderViewImplParams* params);
545 void SetScreenMetricsEmulationParameters(float device_scale_factor, 546 void SetScreenMetricsEmulationParameters(float device_scale_factor,
546 const gfx::Point& root_layer_offset, 547 const gfx::Point& root_layer_offset,
547 float root_layer_scale) override; 548 float root_layer_scale) override;
548 549
549 // Do not delete directly. This class is reference counted. 550 // Do not delete directly. This class is reference counted.
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
1104 // use the Observer interface to filter IPC messages and receive frame change 1105 // use the Observer interface to filter IPC messages and receive frame change
1105 // notifications. 1106 // notifications.
1106 // --------------------------------------------------------------------------- 1107 // ---------------------------------------------------------------------------
1107 1108
1108 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1109 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1109 }; 1110 };
1110 1111
1111 } // namespace content 1112 } // namespace content
1112 1113
1113 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1114 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698