| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); | 655 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); |
| 656 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, DontIgnoreBackAfterNavEntryLimit); | 656 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, DontIgnoreBackAfterNavEntryLimit); |
| 657 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, ImeComposition); | 657 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, ImeComposition); |
| 658 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, InsertCharacters); | 658 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, InsertCharacters); |
| 659 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, JSBlockSentAfterPageLoad); | 659 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, JSBlockSentAfterPageLoad); |
| 660 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, LastCommittedUpdateState); | 660 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, LastCommittedUpdateState); |
| 661 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnHandleKeyboardEvent); | 661 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnHandleKeyboardEvent); |
| 662 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnImeStateChanged); | 662 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnImeStateChanged); |
| 663 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnNavStateChanged); | 663 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnNavStateChanged); |
| 664 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnSetTextDirection); | 664 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnSetTextDirection); |
| 665 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnUpdateWebPreferences); |
| 665 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, StaleNavigationsIgnored); | 666 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, StaleNavigationsIgnored); |
| 666 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, UpdateTargetURLWithInvalidURL); | 667 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, UpdateTargetURLWithInvalidURL); |
| 667 #if defined(OS_MACOSX) | 668 #if defined(OS_MACOSX) |
| 668 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); | 669 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); |
| 669 #endif | 670 #endif |
| 670 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, SetHistoryLengthAndPrune); | 671 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, SetHistoryLengthAndPrune); |
| 671 | 672 |
| 672 typedef std::map<GURL, double> HostZoomLevels; | 673 typedef std::map<GURL, double> HostZoomLevels; |
| 673 | 674 |
| 674 // Identifies an accessibility notification from webkit. | 675 // Identifies an accessibility notification from webkit. |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1231 // bunch of stuff, you should probably create a helper class and put your | 1232 // bunch of stuff, you should probably create a helper class and put your |
| 1232 // data and methods on that to avoid bloating RenderView more. You can use | 1233 // data and methods on that to avoid bloating RenderView more. You can use |
| 1233 // the Observer interface to filter IPC messages and receive frame change | 1234 // the Observer interface to filter IPC messages and receive frame change |
| 1234 // notifications. | 1235 // notifications. |
| 1235 // --------------------------------------------------------------------------- | 1236 // --------------------------------------------------------------------------- |
| 1236 | 1237 |
| 1237 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1238 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1238 }; | 1239 }; |
| 1239 | 1240 |
| 1240 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1241 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |