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_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, FindOpenerRVHWhenPending); | 680 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, FindOpenerRVHWhenPending); |
681 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, | 681 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, |
682 CrossSiteCantPreemptAfterUnload); | 682 CrossSiteCantPreemptAfterUnload); |
683 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, PendingContents); | 683 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, PendingContents); |
684 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, FrameTreeShape); | 684 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, FrameTreeShape); |
685 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, GetLastActiveTime); | 685 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, GetLastActiveTime); |
686 FRIEND_TEST_ALL_PREFIXES(FormStructureBrowserTest, HTMLFiles); | 686 FRIEND_TEST_ALL_PREFIXES(FormStructureBrowserTest, HTMLFiles); |
687 FRIEND_TEST_ALL_PREFIXES(NavigationControllerTest, HistoryNavigate); | 687 FRIEND_TEST_ALL_PREFIXES(NavigationControllerTest, HistoryNavigate); |
688 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, PageDoesBackAndReload); | 688 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, PageDoesBackAndReload); |
689 FRIEND_TEST_ALL_PREFIXES(SitePerProcessBrowserTest, CrossSiteIframe); | 689 FRIEND_TEST_ALL_PREFIXES(SitePerProcessBrowserTest, CrossSiteIframe); |
| 690 FRIEND_TEST_ALL_PREFIXES(SitePerProcessAccessibilityBrowserTest, |
| 691 CrossSiteIframeAccessibility); |
690 | 692 |
691 // So InterstitialPageImpl can access SetIsLoading. | 693 // So InterstitialPageImpl can access SetIsLoading. |
692 friend class InterstitialPageImpl; | 694 friend class InterstitialPageImpl; |
693 | 695 |
694 // TODO(brettw) TestWebContents shouldn't exist! | 696 // TODO(brettw) TestWebContents shouldn't exist! |
695 friend class TestWebContents; | 697 friend class TestWebContents; |
696 | 698 |
697 class DestructionObserver; | 699 class DestructionObserver; |
698 | 700 |
699 // See WebContents::Create for a description of these parameters. | 701 // See WebContents::Create for a description of these parameters. |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1200 // The accessibility mode for all frames. This is queried when each frame | 1202 // The accessibility mode for all frames. This is queried when each frame |
1201 // is created, and broadcast to all frames when it changes. | 1203 // is created, and broadcast to all frames when it changes. |
1202 AccessibilityMode accessibility_mode_; | 1204 AccessibilityMode accessibility_mode_; |
1203 | 1205 |
1204 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1206 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1205 }; | 1207 }; |
1206 | 1208 |
1207 } // namespace content | 1209 } // namespace content |
1208 | 1210 |
1209 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1211 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |