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

Side by Side Diff: content/browser/frame_host/navigation_entry_impl.h

Issue 1496483002: OOPIF: Support session restore by combining/splitting frame PageStates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix remaining tests Created 5 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_vector.h" 10 #include "base/memory/scoped_vector.h"
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 const GURL& GetURL() const override; 82 const GURL& GetURL() const override;
83 void SetBaseURLForDataURL(const GURL& url) override; 83 void SetBaseURLForDataURL(const GURL& url) override;
84 const GURL& GetBaseURLForDataURL() const override; 84 const GURL& GetBaseURLForDataURL() const override;
85 void SetReferrer(const Referrer& referrer) override; 85 void SetReferrer(const Referrer& referrer) override;
86 const Referrer& GetReferrer() const override; 86 const Referrer& GetReferrer() const override;
87 void SetVirtualURL(const GURL& url) override; 87 void SetVirtualURL(const GURL& url) override;
88 const GURL& GetVirtualURL() const override; 88 const GURL& GetVirtualURL() const override;
89 void SetTitle(const base::string16& title) override; 89 void SetTitle(const base::string16& title) override;
90 const base::string16& GetTitle() const override; 90 const base::string16& GetTitle() const override;
91 void SetPageState(const PageState& state) override; 91 void SetPageState(const PageState& state) override;
92 const PageState& GetPageState() const override; 92 PageState GetPageState() const override;
93 void SetPageID(int page_id) override; 93 void SetPageID(int page_id) override;
94 int32 GetPageID() const override; 94 int32 GetPageID() const override;
95 const base::string16& GetTitleForDisplay( 95 const base::string16& GetTitleForDisplay(
96 const std::string& languages) const override; 96 const std::string& languages) const override;
97 bool IsViewSourceMode() const override; 97 bool IsViewSourceMode() const override;
98 void SetTransitionType(ui::PageTransition transition_type) override; 98 void SetTransitionType(ui::PageTransition transition_type) override;
99 ui::PageTransition GetTransitionType() const override; 99 ui::PageTransition GetTransitionType() const override;
100 const GURL& GetUserTypedURL() const override; 100 const GURL& GetUserTypedURL() const override;
101 void SetHasPostData(bool has_post_data) override; 101 void SetHasPostData(bool has_post_data) override;
102 bool GetHasPostData() const override; 102 bool GetHasPostData() const override;
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 // persisted, unless specific data is taken out/put back in at save/restore 488 // persisted, unless specific data is taken out/put back in at save/restore
489 // time (see TabNavigation for an example of this). 489 // time (see TabNavigation for an example of this).
490 std::map<std::string, base::string16> extra_data_; 490 std::map<std::string, base::string16> extra_data_;
491 491
492 DISALLOW_COPY_AND_ASSIGN(NavigationEntryImpl); 492 DISALLOW_COPY_AND_ASSIGN(NavigationEntryImpl);
493 }; 493 };
494 494
495 } // namespace content 495 } // namespace content
496 496
497 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ 497 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698