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

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

Issue 7628029: Don't ignore back navigations after max entry limit is reached. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial draft Created 9 years, 4 months 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
« no previous file with comments | « no previous file | content/renderer/render_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 641
642 private: 642 private:
643 // For unit tests. 643 // For unit tests.
644 friend class ExternalPopupMenuTest; 644 friend class ExternalPopupMenuTest;
645 friend class PepperDeviceTest; 645 friend class PepperDeviceTest;
646 friend class RenderViewTest; 646 friend class RenderViewTest;
647 647
648 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange); 648 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange);
649 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase); 649 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase);
650 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); 650 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate);
651 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, DontIgnoreBackAfterNavEntryLimit);
651 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, ImeComposition); 652 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, ImeComposition);
652 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, InsertCharacters); 653 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, InsertCharacters);
653 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, JSBlockSentAfterPageLoad); 654 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, JSBlockSentAfterPageLoad);
654 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, LastCommittedUpdateState); 655 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, LastCommittedUpdateState);
655 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnHandleKeyboardEvent); 656 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnHandleKeyboardEvent);
656 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnImeStateChanged); 657 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnImeStateChanged);
657 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnNavStateChanged); 658 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnNavStateChanged);
658 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnSetTextDirection); 659 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, OnSetTextDirection);
659 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, StaleNavigationsIgnored); 660 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, StaleNavigationsIgnored);
660 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, UpdateTargetURLWithInvalidURL); 661 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, UpdateTargetURLWithInvalidURL);
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
1209 // bunch of stuff, you should probably create a helper class and put your 1210 // bunch of stuff, you should probably create a helper class and put your
1210 // data and methods on that to avoid bloating RenderView more. You can use 1211 // data and methods on that to avoid bloating RenderView more. You can use
1211 // the Observer interface to filter IPC messages and receive frame change 1212 // the Observer interface to filter IPC messages and receive frame change
1212 // notifications. 1213 // notifications.
1213 // --------------------------------------------------------------------------- 1214 // ---------------------------------------------------------------------------
1214 1215
1215 DISALLOW_COPY_AND_ASSIGN(RenderView); 1216 DISALLOW_COPY_AND_ASSIGN(RenderView);
1216 }; 1217 };
1217 1218
1218 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ 1219 #endif // CONTENT_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698