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

Side by Side Diff: chrome/browser/sessions/tab_loader.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « chrome/browser/sessions/session_tab_helper.h ('k') | chrome/browser/sessions/tab_loader.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_SESSIONS_TAB_LOADER_H_ 5 #ifndef CHROME_BROWSER_SESSIONS_TAB_LOADER_H_
6 #define CHROME_BROWSER_SESSIONS_TAB_LOADER_H_ 6 #define CHROME_BROWSER_SESSIONS_TAB_LOADER_H_
7 7
8 #include <stddef.h>
9
8 #include <list> 10 #include <list>
9 #include <set> 11 #include <set>
10 12
13 #include "base/macros.h"
11 #include "base/memory/memory_pressure_listener.h" 14 #include "base/memory/memory_pressure_listener.h"
12 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
13 #include "base/timer/timer.h" 16 #include "base/timer/timer.h"
14 #include "chrome/browser/sessions/session_restore_delegate.h" 17 #include "chrome/browser/sessions/session_restore_delegate.h"
15 #include "chrome/browser/sessions/tab_loader_delegate.h" 18 #include "chrome/browser/sessions/tab_loader_delegate.h"
16 #include "content/public/browser/notification_observer.h" 19 #include "content/public/browser/notification_observer.h"
17 #include "content/public/browser/notification_registrar.h" 20 #include "content/public/browser/notification_registrar.h"
18 21
19 namespace content { 22 namespace content {
20 class NavigationController; 23 class NavigationController;
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 // explicitly referenced so that it can be notified of deferred tab loads due 145 // explicitly referenced so that it can be notified of deferred tab loads due
143 // to memory pressure. 146 // to memory pressure.
144 scoped_refptr<SessionRestoreStatsCollector> stats_collector_; 147 scoped_refptr<SessionRestoreStatsCollector> stats_collector_;
145 148
146 static TabLoader* shared_tab_loader_; 149 static TabLoader* shared_tab_loader_;
147 150
148 DISALLOW_COPY_AND_ASSIGN(TabLoader); 151 DISALLOW_COPY_AND_ASSIGN(TabLoader);
149 }; 152 };
150 153
151 #endif // CHROME_BROWSER_SESSIONS_TAB_LOADER_H_ 154 #endif // CHROME_BROWSER_SESSIONS_TAB_LOADER_H_
OLDNEW
« no previous file with comments | « chrome/browser/sessions/session_tab_helper.h ('k') | chrome/browser/sessions/tab_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698