| 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_NAVIGATION_ENTRY_H_ |    5 #ifndef CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ | 
|    6 #define CHROME_BROWSER_NAVIGATION_ENTRY_H_ |    6 #define CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ | 
|    7  |    7  | 
|    8 #include "base/basictypes.h" |    8 #include "base/basictypes.h" | 
|    9 #include "base/scoped_ptr.h" |    9 #include "base/scoped_ptr.h" | 
|   10 #include "base/string_util.h" |   10 #include "base/string_util.h" | 
|   11 #include "chrome/browser/tab_contents/security_style.h" |   11 #include "chrome/browser/tab_contents/security_style.h" | 
|   12 #include "chrome/browser/tab_contents/site_instance.h" |   12 #include "chrome/browser/tab_contents/site_instance.h" | 
|   13 #include "chrome/browser/tab_contents/tab_contents_type.h" |   13 #include "chrome/browser/tab_contents/tab_contents_type.h" | 
|   14 #include "chrome/common/page_transition_types.h" |   14 #include "chrome/common/page_transition_types.h" | 
|   15 #include "googleurl/src/gurl.h" |   15 #include "googleurl/src/gurl.h" | 
|   16 #include "grit/theme_resources.h" |   16 #include "grit/theme_resources.h" | 
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  400  |  400  | 
|  401   // This is a cached version of the result of GetTitleForDisplay. It prevents |  401   // This is a cached version of the result of GetTitleForDisplay. It prevents | 
|  402   // us from having to do URL formatting on the URL evey time the title is |  402   // us from having to do URL formatting on the URL evey time the title is | 
|  403   // displayed. When the URL, display URL, or title is set, this should be |  403   // displayed. When the URL, display URL, or title is set, this should be | 
|  404   // cleared to force a refresh. |  404   // cleared to force a refresh. | 
|  405   string16 cached_display_title_; |  405   string16 cached_display_title_; | 
|  406  |  406  | 
|  407   // Copy and assignment is explicitly allowed for this class. |  407   // Copy and assignment is explicitly allowed for this class. | 
|  408 }; |  408 }; | 
|  409  |  409  | 
|  410 #endif  // CHROME_BROWSER_NAVIGATION_ENTRY_H_ |  410 #endif  // CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_ENTRY_H_ | 
| OLD | NEW |