Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: chrome/browser/tab_contents/navigation_controller.h

Issue 274040: More style nits. (Closed)
Patch Set: Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #include <string>
11 #include <vector>
12
10 #include "base/linked_ptr.h" 13 #include "base/linked_ptr.h"
11 #include "base/string16.h" 14 #include "base/string16.h"
12 #include "base/time.h" 15 #include "base/time.h"
13 #include "googleurl/src/gurl.h" 16 #include "googleurl/src/gurl.h"
14 #include "chrome/browser/sessions/session_id.h" 17 #include "chrome/browser/sessions/session_id.h"
15 #include "chrome/browser/ssl/ssl_manager.h" 18 #include "chrome/browser/ssl/ssl_manager.h"
16 #include "chrome/common/navigation_types.h" 19 #include "chrome/common/navigation_types.h"
17 #include "chrome/common/page_transition_types.h" 20 #include "chrome/common/page_transition_types.h"
18 21
19 class NavigationEntry; 22 class NavigationEntry;
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 // when testing. 526 // when testing.
524 static bool check_for_repost_; 527 static bool check_for_repost_;
525 528
526 // The maximum number of entries that a navigation controller can store. 529 // The maximum number of entries that a navigation controller can store.
527 static size_t max_entry_count_; 530 static size_t max_entry_count_;
528 531
529 DISALLOW_COPY_AND_ASSIGN(NavigationController); 532 DISALLOW_COPY_AND_ASSIGN(NavigationController);
530 }; 533 };
531 534
532 #endif // CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_ 535 #endif // CHROME_BROWSER_TAB_CONTENTS_NAVIGATION_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698