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

Side by Side Diff: content/browser/browser_main_loop.h

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 | « content/browser/browser_main.h ('k') | content/browser/browser_main_loop.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 (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_BROWSER_MAIN_LOOP_H_ 5 #ifndef CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_
6 #define CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ 6 #define CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_
7 7
8 #include "base/basictypes.h"
9 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/macros.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/timer/timer.h" 12 #include "base/timer/timer.h"
13 #include "build/build_config.h"
13 #include "content/browser/browser_process_sub_thread.h" 14 #include "content/browser/browser_process_sub_thread.h"
14 #include "content/public/browser/browser_main_runner.h" 15 #include "content/public/browser/browser_main_runner.h"
15 16
16 namespace base { 17 namespace base {
17 class CommandLine; 18 class CommandLine;
18 class FilePath; 19 class FilePath;
19 class HighResolutionTimerManager; 20 class HighResolutionTimerManager;
20 class MessageLoop; 21 class MessageLoop;
21 class PowerMonitor; 22 class PowerMonitor;
22 class SystemMonitor; 23 class SystemMonitor;
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 scoped_ptr<TimeZoneMonitor> time_zone_monitor_; 264 scoped_ptr<TimeZoneMonitor> time_zone_monitor_;
264 265
265 // DO NOT add members here. Add them to the right categories above. 266 // DO NOT add members here. Add them to the right categories above.
266 267
267 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); 268 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop);
268 }; 269 };
269 270
270 } // namespace content 271 } // namespace content
271 272
272 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ 273 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_
OLDNEW
« no previous file with comments | « content/browser/browser_main.h ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698