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/renderer/render_view_impl.h

Issue 11026070: Add API to construct new vector interchange MIME data type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improve comment Created 8 years, 2 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 | « content/content_tests.gypi ('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 <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 virtual void GetCompositionCharacterBounds( 795 virtual void GetCompositionCharacterBounds(
796 std::vector<gfx::Rect>* character_bounds) OVERRIDE; 796 std::vector<gfx::Rect>* character_bounds) OVERRIDE;
797 virtual bool CanComposeInline() OVERRIDE; 797 virtual bool CanComposeInline() OVERRIDE;
798 virtual bool WebWidgetHandlesCompositorScheduling() const OVERRIDE; 798 virtual bool WebWidgetHandlesCompositorScheduling() const OVERRIDE;
799 799
800 private: 800 private:
801 // For unit tests. 801 // For unit tests.
802 friend class ExternalPopupMenuTest; 802 friend class ExternalPopupMenuTest;
803 friend class PepperDeviceTest; 803 friend class PepperDeviceTest;
804 friend class RendererAccessibilityTest; 804 friend class RendererAccessibilityTest;
805 friend class WebIntentsHostTest;
805 friend class content::RenderViewTest; 806 friend class content::RenderViewTest;
806 807
807 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange); 808 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange);
808 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase); 809 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase);
809 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); 810 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate);
810 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, DecideNavigationPolicyForWebUI); 811 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, DecideNavigationPolicyForWebUI);
811 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, 812 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
812 DontIgnoreBackAfterNavEntryLimit); 813 DontIgnoreBackAfterNavEntryLimit);
813 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ImeComposition); 814 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ImeComposition);
814 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, InsertCharacters); 815 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, InsertCharacters);
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
1589 // bunch of stuff, you should probably create a helper class and put your 1590 // bunch of stuff, you should probably create a helper class and put your
1590 // data and methods on that to avoid bloating RenderView more. You can 1591 // data and methods on that to avoid bloating RenderView more. You can
1591 // use the Observer interface to filter IPC messages and receive frame change 1592 // use the Observer interface to filter IPC messages and receive frame change
1592 // notifications. 1593 // notifications.
1593 // --------------------------------------------------------------------------- 1594 // ---------------------------------------------------------------------------
1594 1595
1595 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1596 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1596 }; 1597 };
1597 1598
1598 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1599 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698