OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 void SetPendingNavigationParams( | 559 void SetPendingNavigationParams( |
560 scoped_ptr<NavigationParams> navigation_params); | 560 scoped_ptr<NavigationParams> navigation_params); |
561 | 561 |
562 protected: | 562 protected: |
563 RenderFrameImpl(RenderViewImpl* render_view, int32 routing_id); | 563 RenderFrameImpl(RenderViewImpl* render_view, int32 routing_id); |
564 | 564 |
565 private: | 565 private: |
566 friend class RenderFrameImplTest; | 566 friend class RenderFrameImplTest; |
567 friend class RenderFrameObserver; | 567 friend class RenderFrameObserver; |
568 friend class RenderViewImplTest; | 568 friend class RenderViewImplTest; |
| 569 friend class RenderViewTest; |
569 friend class RendererAccessibilityTest; | 570 friend class RendererAccessibilityTest; |
570 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuDisplayNoneTest, SelectItem); | 571 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuDisplayNoneTest, SelectItem); |
571 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange); | 572 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange); |
572 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase); | 573 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase); |
573 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); | 574 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); |
574 FRIEND_TEST_ALL_PREFIXES(RendererAccessibilityTest, | 575 FRIEND_TEST_ALL_PREFIXES(RendererAccessibilityTest, |
575 AccessibilityMessagesQueueWhileSwappedOut); | 576 AccessibilityMessagesQueueWhileSwappedOut); |
576 | 577 |
577 // A wrapper class used as the callback for JavaScript executed | 578 // A wrapper class used as the callback for JavaScript executed |
578 // in an isolated world. | 579 // in an isolated world. |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 #endif | 977 #endif |
977 | 978 |
978 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 979 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
979 | 980 |
980 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 981 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
981 }; | 982 }; |
982 | 983 |
983 } // namespace content | 984 } // namespace content |
984 | 985 |
985 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 986 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |