| OLD | NEW |
| 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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 friend class PepperDeviceTest; | 563 friend class PepperDeviceTest; |
| 564 friend class RenderViewImplTest; | 564 friend class RenderViewImplTest; |
| 565 friend class RenderViewTest; | 565 friend class RenderViewTest; |
| 566 friend class RendererAccessibilityTest; | 566 friend class RendererAccessibilityTest; |
| 567 | 567 |
| 568 // TODO(nasko): Temporarily friend RenderFrameImpl, so we don't duplicate | 568 // TODO(nasko): Temporarily friend RenderFrameImpl, so we don't duplicate |
| 569 // utility functions needed in both classes, while we move frame specific | 569 // utility functions needed in both classes, while we move frame specific |
| 570 // code away from this class. | 570 // code away from this class. |
| 571 friend class RenderFrameImpl; | 571 friend class RenderFrameImpl; |
| 572 | 572 |
| 573 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuDisplayNoneTest, SelectItem); |
| 573 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange); | 574 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange); |
| 574 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase); | 575 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase); |
| 575 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); | 576 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); |
| 576 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, DecideNavigationPolicyForWebUI); | 577 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, DecideNavigationPolicyForWebUI); |
| 577 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 578 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
| 578 DidFailProvisionalLoadWithErrorForError); | 579 DidFailProvisionalLoadWithErrorForError); |
| 579 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 580 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
| 580 DidFailProvisionalLoadWithErrorForCancellation); | 581 DidFailProvisionalLoadWithErrorForCancellation); |
| 581 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 582 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
| 582 DontIgnoreBackAfterNavEntryLimit); | 583 DontIgnoreBackAfterNavEntryLimit); |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 // use the Observer interface to filter IPC messages and receive frame change | 1145 // use the Observer interface to filter IPC messages and receive frame change |
| 1145 // notifications. | 1146 // notifications. |
| 1146 // --------------------------------------------------------------------------- | 1147 // --------------------------------------------------------------------------- |
| 1147 | 1148 |
| 1148 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1149 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1149 }; | 1150 }; |
| 1150 | 1151 |
| 1151 } // namespace content | 1152 } // namespace content |
| 1152 | 1153 |
| 1153 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1154 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |