| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ |
| 7 | 7 |
| 8 #include <string> |
| 9 |
| 8 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 9 #include "base/ref_counted.h" | 11 #include "base/ref_counted.h" |
| 10 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
| 11 #include "chrome/browser/tab_contents/security_style.h" | 13 #include "chrome/browser/tab_contents/security_style.h" |
| 12 #include "chrome/common/page_transition_types.h" | 14 #include "chrome/common/page_transition_types.h" |
| 13 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
| 14 #include "third_party/skia/include/core/SkBitmap.h" | 16 #include "third_party/skia/include/core/SkBitmap.h" |
| 15 | 17 |
| 16 class NavigationController; | 18 class NavigationController; |
| 17 class SiteInstance; | 19 class SiteInstance; |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 // This is a cached version of the result of GetTitleForDisplay. It prevents | 397 // This is a cached version of the result of GetTitleForDisplay. It prevents |
| 396 // us from having to do URL formatting on the URL evey time the title is | 398 // us from having to do URL formatting on the URL evey time the title is |
| 397 // displayed. When the URL, virtual URL, or title is set, this should be | 399 // displayed. When the URL, virtual URL, or title is set, this should be |
| 398 // cleared to force a refresh. | 400 // cleared to force a refresh. |
| 399 string16 cached_display_title_; | 401 string16 cached_display_title_; |
| 400 | 402 |
| 401 // Copy and assignment is explicitly allowed for this class. | 403 // Copy and assignment is explicitly allowed for this class. |
| 402 }; | 404 }; |
| 403 | 405 |
| 404 #endif // CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ | 406 #endif // CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ |
| OLD | NEW |