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

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

Issue 33323003: Fix the order of the event dispatch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a test case. Created 7 years, 1 month 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_view_browsertest.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 <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 #if defined(OS_MACOSX) 829 #if defined(OS_MACOSX)
830 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); 830 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp);
831 #endif 831 #endif
832 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); 832 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune);
833 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); 833 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit);
834 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); 834 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame);
835 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, 835 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
836 ShouldUpdateSelectionTextFromContextMenuParams); 836 ShouldUpdateSelectionTextFromContextMenuParams);
837 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); 837 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame);
838 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper); 838 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper);
839 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
840 MessageOrderInDidChangeSelection);
839 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, Suppresses); 841 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, Suppresses);
840 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, DoesNotSuppress); 842 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, DoesNotSuppress);
841 843
842 typedef std::map<GURL, double> HostZoomLevels; 844 typedef std::map<GURL, double> HostZoomLevels;
843 845
844 enum ErrorPageType { 846 enum ErrorPageType {
845 DNS_ERROR, 847 DNS_ERROR,
846 HTTP_404, 848 HTTP_404,
847 CONNECTION_ERROR, 849 CONNECTION_ERROR,
848 }; 850 };
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after
1542 // use the Observer interface to filter IPC messages and receive frame change 1544 // use the Observer interface to filter IPC messages and receive frame change
1543 // notifications. 1545 // notifications.
1544 // --------------------------------------------------------------------------- 1546 // ---------------------------------------------------------------------------
1545 1547
1546 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1548 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1547 }; 1549 };
1548 1550
1549 } // namespace content 1551 } // namespace content
1550 1552
1551 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1553 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698