Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(880)

Side by Side Diff: content/renderer/render_view_impl.h

Issue 84703003: Allow data URL > 2MB for loadDataWithBaseURL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnUpdateWebPreferences); 822 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnUpdateWebPreferences);
823 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SendSwapOutACK); 823 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SendSwapOutACK);
824 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ReloadWhileSwappedOut); 824 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ReloadWhileSwappedOut);
825 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, 825 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
826 SetEditableSelectionAndComposition); 826 SetEditableSelectionAndComposition);
827 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, StaleNavigationsIgnored); 827 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, StaleNavigationsIgnored);
828 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, UpdateTargetURLWithInvalidURL); 828 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, UpdateTargetURLWithInvalidURL);
829 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, 829 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
830 GetCompositionCharacterBoundsTest); 830 GetCompositionCharacterBoundsTest);
831 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavigationHttpPost); 831 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavigationHttpPost);
832 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavigationLoadDataWithBaseURL);
832 #if defined(OS_MACOSX) 833 #if defined(OS_MACOSX)
833 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); 834 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp);
834 #endif 835 #endif
835 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); 836 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune);
836 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); 837 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit);
837 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); 838 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame);
838 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, 839 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest,
839 ShouldUpdateSelectionTextFromContextMenuParams); 840 ShouldUpdateSelectionTextFromContextMenuParams);
840 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); 841 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame);
841 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper); 842 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper);
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
1563 // use the Observer interface to filter IPC messages and receive frame change 1564 // use the Observer interface to filter IPC messages and receive frame change
1564 // notifications. 1565 // notifications.
1565 // --------------------------------------------------------------------------- 1566 // ---------------------------------------------------------------------------
1566 1567
1567 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1568 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1568 }; 1569 };
1569 1570
1570 } // namespace content 1571 } // namespace content
1571 1572
1572 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1573 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698