OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <queue> | 10 #include <queue> |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 FRIEND_TEST(RenderViewTest, PrintWithIframe); | 582 FRIEND_TEST(RenderViewTest, PrintWithIframe); |
583 FRIEND_TEST(RenderViewTest, PrintLayoutTest); | 583 FRIEND_TEST(RenderViewTest, PrintLayoutTest); |
584 FRIEND_TEST(RenderViewTest, OnHandleKeyboardEvent); | 584 FRIEND_TEST(RenderViewTest, OnHandleKeyboardEvent); |
585 FRIEND_TEST(RenderViewTest, InsertCharacters); | 585 FRIEND_TEST(RenderViewTest, InsertCharacters); |
586 #if defined(OS_MACOSX) | 586 #if defined(OS_MACOSX) |
587 FRIEND_TEST(RenderViewTest, MacTestCmdUp); | 587 FRIEND_TEST(RenderViewTest, MacTestCmdUp); |
588 #endif | 588 #endif |
589 FRIEND_TEST(RenderViewTest, JSBlockSentAfterPageLoad); | 589 FRIEND_TEST(RenderViewTest, JSBlockSentAfterPageLoad); |
590 FRIEND_TEST(RenderViewTest, UpdateTargetURLWithInvalidURL); | 590 FRIEND_TEST(RenderViewTest, UpdateTargetURLWithInvalidURL); |
591 FRIEND_TEST(RenderViewTest, SendForms); | 591 FRIEND_TEST(RenderViewTest, SendForms); |
| 592 FRIEND_TEST(RenderViewTest, FillFormElement); |
592 | 593 |
593 typedef std::map<GURL, ContentSettings> HostContentSettings; | 594 typedef std::map<GURL, ContentSettings> HostContentSettings; |
594 typedef std::map<GURL, int> HostZoomLevels; | 595 typedef std::map<GURL, int> HostZoomLevels; |
595 | 596 |
596 enum AutoFillAction { | 597 enum AutoFillAction { |
597 AUTOFILL_NONE, // No state set. | 598 AUTOFILL_NONE, // No state set. |
598 AUTOFILL_FILL, // Fill the AutoFill form data. | 599 AUTOFILL_FILL, // Fill the AutoFill form data. |
599 AUTOFILL_PREVIEW, // Preview the AutoFill form data. | 600 AUTOFILL_PREVIEW, // Preview the AutoFill form data. |
600 }; | 601 }; |
601 | 602 |
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1273 // ADDING NEW DATA? Please see if it fits appropriately in one of the above | 1274 // ADDING NEW DATA? Please see if it fits appropriately in one of the above |
1274 // sections rather than throwing it randomly at the end. If you're adding a | 1275 // sections rather than throwing it randomly at the end. If you're adding a |
1275 // bunch of stuff, you should probably create a helper class and put your | 1276 // bunch of stuff, you should probably create a helper class and put your |
1276 // data and methods on that to avoid bloating RenderView more. | 1277 // data and methods on that to avoid bloating RenderView more. |
1277 // --------------------------------------------------------------------------- | 1278 // --------------------------------------------------------------------------- |
1278 | 1279 |
1279 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1280 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1280 }; | 1281 }; |
1281 | 1282 |
1282 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1283 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |