| 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 CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ | 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ | 6 #define CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/linked_ptr.h" | 14 #include "base/linked_ptr.h" |
| 15 #include "base/time.h" | 15 #include "base/time.h" |
| 16 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
| (...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 // The maximum number of entries that a navigation controller can store. | 593 // The maximum number of entries that a navigation controller can store. |
| 594 static size_t max_entry_count_; | 594 static size_t max_entry_count_; |
| 595 | 595 |
| 596 // If a repost is pending, its type (RELOAD or RELOAD_IGNORING_CACHE), | 596 // If a repost is pending, its type (RELOAD or RELOAD_IGNORING_CACHE), |
| 597 // NO_RELOAD otherwise. | 597 // NO_RELOAD otherwise. |
| 598 ReloadType pending_reload_; | 598 ReloadType pending_reload_; |
| 599 | 599 |
| 600 DISALLOW_COPY_AND_ASSIGN(NavigationController); | 600 DISALLOW_COPY_AND_ASSIGN(NavigationController); |
| 601 }; | 601 }; |
| 602 | 602 |
| 603 #endif // CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ | 603 #endif // CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ |
| OLD | NEW |