OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_CONTROLLER_H_ | 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ |
6 #define CONTENT_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/memory/linked_ptr.h" | 14 #include "base/memory/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" |
17 #include "chrome/browser/sessions/session_id.h" | 17 #include "chrome/browser/sessions/session_id.h" |
18 #include "chrome/browser/ssl/ssl_manager.h" | 18 #include "content/browser/ssl/ssl_manager.h" |
19 #include "content/common/navigation_types.h" | 19 #include "content/common/navigation_types.h" |
20 #include "content/common/page_transition_types.h" | 20 #include "content/common/page_transition_types.h" |
21 | 21 |
22 class NavigationEntry; | 22 class NavigationEntry; |
23 class Profile; | 23 class Profile; |
24 class SessionStorageNamespace; | 24 class SessionStorageNamespace; |
25 class SiteInstance; | 25 class SiteInstance; |
26 class TabContents; | 26 class TabContents; |
27 class TabNavigation; | 27 class TabNavigation; |
28 struct ViewHostMsg_FrameNavigate_Params; | 28 struct ViewHostMsg_FrameNavigate_Params; |
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 static size_t max_entry_count_; | 491 static size_t max_entry_count_; |
492 | 492 |
493 // If a repost is pending, its type (RELOAD or RELOAD_IGNORING_CACHE), | 493 // If a repost is pending, its type (RELOAD or RELOAD_IGNORING_CACHE), |
494 // NO_RELOAD otherwise. | 494 // NO_RELOAD otherwise. |
495 ReloadType pending_reload_; | 495 ReloadType pending_reload_; |
496 | 496 |
497 DISALLOW_COPY_AND_ASSIGN(NavigationController); | 497 DISALLOW_COPY_AND_ASSIGN(NavigationController); |
498 }; | 498 }; |
499 | 499 |
500 #endif // CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ | 500 #endif // CONTENT_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ |
OLD | NEW |