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

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

Issue 12079046: Revert 178747 (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1397/src/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 <set> 8 #include <set>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 int selection_start, 799 int selection_start,
800 int selection_end) OVERRIDE; 800 int selection_end) OVERRIDE;
801 virtual void OnImeConfirmComposition( 801 virtual void OnImeConfirmComposition(
802 const string16& text, const ui::Range& replacement_range) OVERRIDE; 802 const string16& text, const ui::Range& replacement_range) OVERRIDE;
803 virtual void SetDeviceScaleFactor(float device_scale_factor) OVERRIDE; 803 virtual void SetDeviceScaleFactor(float device_scale_factor) OVERRIDE;
804 virtual ui::TextInputType GetTextInputType() OVERRIDE; 804 virtual ui::TextInputType GetTextInputType() OVERRIDE;
805 virtual void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) OVERRIDE; 805 virtual void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) OVERRIDE;
806 virtual void GetCompositionCharacterBounds( 806 virtual void GetCompositionCharacterBounds(
807 std::vector<gfx::Rect>* character_bounds) OVERRIDE; 807 std::vector<gfx::Rect>* character_bounds) OVERRIDE;
808 virtual bool CanComposeInline() OVERRIDE; 808 virtual bool CanComposeInline() OVERRIDE;
809 virtual bool WebWidgetHandlesCompositorScheduling() const OVERRIDE;
809 810
810 protected: 811 protected:
811 RenderViewImpl(RenderViewImplParams* params); 812 RenderViewImpl(RenderViewImplParams* params);
812 813
813 // Do not delete directly. This class is reference counted. 814 // Do not delete directly. This class is reference counted.
814 virtual ~RenderViewImpl(); 815 virtual ~RenderViewImpl();
815 816
816 private: 817 private:
817 // For unit tests. 818 // For unit tests.
818 friend class ExternalPopupMenuTest; 819 friend class ExternalPopupMenuTest;
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
1592 // use the Observer interface to filter IPC messages and receive frame change 1593 // use the Observer interface to filter IPC messages and receive frame change
1593 // notifications. 1594 // notifications.
1594 // --------------------------------------------------------------------------- 1595 // ---------------------------------------------------------------------------
1595 1596
1596 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1597 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1597 }; 1598 };
1598 1599
1599 } // namespace content 1600 } // namespace content
1600 1601
1601 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1602 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698