OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WEB_CONTENTS_NAVIGATION_CONTROLLER_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_NAVIGATION_CONTROLLER_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_NAVIGATION_CONTROLLER_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_NAVIGATION_CONTROLLER_IMPL_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 | 356 |
357 // The WebContents associated with the controller. Possibly NULL during | 357 // The WebContents associated with the controller. Possibly NULL during |
358 // setup. | 358 // setup. |
359 WebContentsImpl* web_contents_; | 359 WebContentsImpl* web_contents_; |
360 | 360 |
361 // The max restored page ID in this controller, if it was restored. We must | 361 // The max restored page ID in this controller, if it was restored. We must |
362 // store this so that WebContentsImpl can tell any renderer in charge of one | 362 // store this so that WebContentsImpl can tell any renderer in charge of one |
363 // of the restored entries to update its max page ID. | 363 // of the restored entries to update its max page ID. |
364 int32 max_restored_page_id_; | 364 int32 max_restored_page_id_; |
365 | 365 |
366 // Manages the SSL security UI | 366 // Manages the SSL security UI. |
367 SSLManager ssl_manager_; | 367 SSLManager ssl_manager_; |
368 | 368 |
369 // Whether we need to be reloaded when made active. | 369 // Whether we need to be reloaded when made active. |
370 bool needs_reload_; | 370 bool needs_reload_; |
371 | 371 |
372 // Whether this is the initial navigation. | 372 // Whether this is the initial navigation. |
373 // Becomes false when initial navigation commits. | 373 // Becomes false when initial navigation commits. |
374 bool is_initial_navigation_; | 374 bool is_initial_navigation_; |
375 | 375 |
376 // Used to find the appropriate SessionStorageNamespace for the storage | 376 // Used to find the appropriate SessionStorageNamespace for the storage |
(...skipping 23 matching lines...) Expand all Loading... |
400 TimeSmoother time_smoother_; | 400 TimeSmoother time_smoother_; |
401 | 401 |
402 scoped_ptr<WebContentsScreenshotManager> screenshot_manager_; | 402 scoped_ptr<WebContentsScreenshotManager> screenshot_manager_; |
403 | 403 |
404 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 404 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |
405 }; | 405 }; |
406 | 406 |
407 } // namespace content | 407 } // namespace content |
408 | 408 |
409 #endif // CONTENT_BROWSER_WEB_CONTENTS_NAVIGATION_CONTROLLER_IMPL_H_ | 409 #endif // CONTENT_BROWSER_WEB_CONTENTS_NAVIGATION_CONTROLLER_IMPL_H_ |
OLD | NEW |