| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_TAB_CONTENTS_NAVIGATION_ENTRY_H_ | 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ |
| 6 #define CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ | 6 #define CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
| 13 #include "chrome/common/page_type.h" | |
| 14 #include "chrome/common/page_transition_types.h" | |
| 15 #include "chrome/common/security_style.h" | 13 #include "chrome/common/security_style.h" |
| 14 #include "content/common/page_transition_types.h" |
| 15 #include "content/common/page_type.h" |
| 16 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
| 17 #include "third_party/skia/include/core/SkBitmap.h" | 17 #include "third_party/skia/include/core/SkBitmap.h" |
| 18 | 18 |
| 19 class SiteInstance; | 19 class SiteInstance; |
| 20 | 20 |
| 21 //////////////////////////////////////////////////////////////////////////////// | 21 //////////////////////////////////////////////////////////////////////////////// |
| 22 // | 22 // |
| 23 // NavigationEntry class | 23 // NavigationEntry class |
| 24 // | 24 // |
| 25 // A NavigationEntry is a data structure that captures all the information | 25 // A NavigationEntry is a data structure that captures all the information |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 // This is a cached version of the result of GetTitleForDisplay. It prevents | 420 // This is a cached version of the result of GetTitleForDisplay. It prevents |
| 421 // us from having to do URL formatting on the URL evey time the title is | 421 // us from having to do URL formatting on the URL evey time the title is |
| 422 // displayed. When the URL, virtual URL, or title is set, this should be | 422 // displayed. When the URL, virtual URL, or title is set, this should be |
| 423 // cleared to force a refresh. | 423 // cleared to force a refresh. |
| 424 string16 cached_display_title_; | 424 string16 cached_display_title_; |
| 425 | 425 |
| 426 // Copy and assignment is explicitly allowed for this class. | 426 // Copy and assignment is explicitly allowed for this class. |
| 427 }; | 427 }; |
| 428 | 428 |
| 429 #endif // CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ | 429 #endif // CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ |
| OLD | NEW |