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

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

Issue 1841653003: Drop |languages| from {Format,Elide}Url* and IDNToUnicode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo in elide_url.cc Created 4 years, 8 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
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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 void SetReferrer(const Referrer& referrer) override; 94 void SetReferrer(const Referrer& referrer) override;
95 const Referrer& GetReferrer() const override; 95 const Referrer& GetReferrer() const override;
96 void SetVirtualURL(const GURL& url) override; 96 void SetVirtualURL(const GURL& url) override;
97 const GURL& GetVirtualURL() const override; 97 const GURL& GetVirtualURL() const override;
98 void SetTitle(const base::string16& title) override; 98 void SetTitle(const base::string16& title) override;
99 const base::string16& GetTitle() const override; 99 const base::string16& GetTitle() const override;
100 void SetPageState(const PageState& state) override; 100 void SetPageState(const PageState& state) override;
101 PageState GetPageState() const override; 101 PageState GetPageState() const override;
102 void SetPageID(int page_id) override; 102 void SetPageID(int page_id) override;
103 int32_t GetPageID() const override; 103 int32_t GetPageID() const override;
104 const base::string16& GetTitleForDisplay( 104 const base::string16& GetTitleForDisplay() const override;
105 const std::string& languages) const override;
106 bool IsViewSourceMode() const override; 105 bool IsViewSourceMode() const override;
107 void SetTransitionType(ui::PageTransition transition_type) override; 106 void SetTransitionType(ui::PageTransition transition_type) override;
108 ui::PageTransition GetTransitionType() const override; 107 ui::PageTransition GetTransitionType() const override;
109 const GURL& GetUserTypedURL() const override; 108 const GURL& GetUserTypedURL() const override;
110 void SetHasPostData(bool has_post_data) override; 109 void SetHasPostData(bool has_post_data) override;
111 bool GetHasPostData() const override; 110 bool GetHasPostData() const override;
112 void SetPostID(int64_t post_id) override; 111 void SetPostID(int64_t post_id) override;
113 int64_t GetPostID() const override; 112 int64_t GetPostID() const override;
114 void SetBrowserInitiatedPostData(const base::RefCountedMemory* data) override; 113 void SetBrowserInitiatedPostData(const base::RefCountedMemory* data) override;
115 const base::RefCountedMemory* GetBrowserInitiatedPostData() const override; 114 const base::RefCountedMemory* GetBrowserInitiatedPostData() const override;
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 // persisted, unless specific data is taken out/put back in at save/restore 501 // persisted, unless specific data is taken out/put back in at save/restore
503 // time (see TabNavigation for an example of this). 502 // time (see TabNavigation for an example of this).
504 std::map<std::string, base::string16> extra_data_; 503 std::map<std::string, base::string16> extra_data_;
505 504
506 DISALLOW_COPY_AND_ASSIGN(NavigationEntryImpl); 505 DISALLOW_COPY_AND_ASSIGN(NavigationEntryImpl);
507 }; 506 };
508 507
509 } // namespace content 508 } // namespace content
510 509
511 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_ 510 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_ENTRY_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigation_controller_impl_unittest.cc ('k') | content/browser/frame_host/navigation_entry_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698