| 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_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 | 11 |
| 12 #include "base/linked_ptr.h" | 12 #include "base/linked_ptr.h" |
| 13 #include "base/ref_counted.h" | |
| 14 #include "base/string16.h" | 13 #include "base/string16.h" |
| 15 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
| 16 #include "chrome/browser/sessions/session_id.h" | 15 #include "chrome/browser/sessions/session_id.h" |
| 17 #include "chrome/browser/ssl/ssl_manager.h" | 16 #include "chrome/browser/ssl/ssl_manager.h" |
| 18 #include "chrome/browser/tab_contents/tab_contents_type.h" | 17 #include "chrome/browser/tab_contents/tab_contents_type.h" |
| 19 #include "chrome/common/navigation_types.h" | 18 #include "chrome/common/navigation_types.h" |
| 20 #include "chrome/common/page_transition_types.h" | 19 #include "chrome/common/page_transition_types.h" |
| 21 | 20 |
| 22 class NavigationEntry; | 21 class NavigationEntry; |
| 23 class GURL; | 22 class GURL; |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 // when testing. | 549 // when testing. |
| 551 static bool check_for_repost_; | 550 static bool check_for_repost_; |
| 552 | 551 |
| 553 // The maximum number of entries that a navigation controller can store. | 552 // The maximum number of entries that a navigation controller can store. |
| 554 static size_t max_entry_count_; | 553 static size_t max_entry_count_; |
| 555 | 554 |
| 556 DISALLOW_COPY_AND_ASSIGN(NavigationController); | 555 DISALLOW_COPY_AND_ASSIGN(NavigationController); |
| 557 }; | 556 }; |
| 558 | 557 |
| 559 #endif // CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ | 558 #endif // CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ |
| OLD | NEW |