| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ | 5 #ifndef IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ |
| 6 #define IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ | 6 #define IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ |
| 7 | 7 |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 | 9 |
| 10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 void SetURL(const GURL& url) override; | 44 void SetURL(const GURL& url) override; |
| 45 const GURL& GetURL() const override; | 45 const GURL& GetURL() const override; |
| 46 void SetReferrer(const web::Referrer& referrer) override; | 46 void SetReferrer(const web::Referrer& referrer) override; |
| 47 const web::Referrer& GetReferrer() const override; | 47 const web::Referrer& GetReferrer() const override; |
| 48 void SetVirtualURL(const GURL& url) override; | 48 void SetVirtualURL(const GURL& url) override; |
| 49 const GURL& GetVirtualURL() const override; | 49 const GURL& GetVirtualURL() const override; |
| 50 void SetTitle(const base::string16& title) override; | 50 void SetTitle(const base::string16& title) override; |
| 51 const base::string16& GetTitle() const override; | 51 const base::string16& GetTitle() const override; |
| 52 void SetPageDisplayState(const PageDisplayState& display_state) override; | 52 void SetPageDisplayState(const PageDisplayState& display_state) override; |
| 53 const PageDisplayState& GetPageDisplayState() const override; | 53 const PageDisplayState& GetPageDisplayState() const override; |
| 54 const base::string16& GetTitleForDisplay( | 54 const base::string16& GetTitleForDisplay() const override; |
| 55 const std::string& languages) const override; | |
| 56 void SetTransitionType(ui::PageTransition transition_type) override; | 55 void SetTransitionType(ui::PageTransition transition_type) override; |
| 57 ui::PageTransition GetTransitionType() const override; | 56 ui::PageTransition GetTransitionType() const override; |
| 58 const FaviconStatus& GetFavicon() const override; | 57 const FaviconStatus& GetFavicon() const override; |
| 59 FaviconStatus& GetFavicon() override; | 58 FaviconStatus& GetFavicon() override; |
| 60 const SSLStatus& GetSSL() const override; | 59 const SSLStatus& GetSSL() const override; |
| 61 SSLStatus& GetSSL() override; | 60 SSLStatus& GetSSL() override; |
| 62 void SetTimestamp(base::Time timestamp) override; | 61 void SetTimestamp(base::Time timestamp) override; |
| 63 base::Time GetTimestamp() const override; | 62 base::Time GetTimestamp() const override; |
| 64 void SetUnsafe(bool is_unsafe) override; | 63 void SetUnsafe(bool is_unsafe) override; |
| 65 bool IsUnsafe() const override; | 64 bool IsUnsafe() const override; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 139 |
| 141 // Weak pointer to the facade delegate. | 140 // Weak pointer to the facade delegate. |
| 142 scoped_ptr<NavigationItemFacadeDelegate> facade_delegate_; | 141 scoped_ptr<NavigationItemFacadeDelegate> facade_delegate_; |
| 143 | 142 |
| 144 // Copy and assignment is explicitly allowed for this class. | 143 // Copy and assignment is explicitly allowed for this class. |
| 145 }; | 144 }; |
| 146 | 145 |
| 147 } // namespace web | 146 } // namespace web |
| 148 | 147 |
| 149 #endif // IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ | 148 #endif // IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ |
| OLD | NEW |