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

Side by Side Diff: content/browser/startup_task_runner.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/ssl/ssl_request_info.h ('k') | content/browser/storage_partition_impl.h » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_STARTUP_TASK_RUNNER_H_ 5 #ifndef CONTENT_BROWSER_STARTUP_TASK_RUNNER_H_
6 #define CONTENT_BROWSER_STARTUP_TASK_RUNNER_H_ 6 #define CONTENT_BROWSER_STARTUP_TASK_RUNNER_H_
7 7
8 #include <list> 8 #include <list>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/macros.h"
11 #include "base/single_thread_task_runner.h" 12 #include "base/single_thread_task_runner.h"
12 13
13 #include "build/build_config.h" 14 #include "build/build_config.h"
14 15
15 #include "content/public/browser/browser_main_runner.h" 16 #include "content/public/browser/browser_main_runner.h"
16 17
17 namespace content { 18 namespace content {
18 19
19 // A startup task is a void function returning the status on completion. 20 // A startup task is a void function returning the status on completion.
20 // a status of > 0 indicates a failure, and that no further startup tasks should 21 // a status of > 0 indicates a failure, and that no further startup tasks should
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 void WrappedTask(); 58 void WrappedTask();
58 59
59 base::Callback<void(int)> startup_complete_callback_; 60 base::Callback<void(int)> startup_complete_callback_;
60 scoped_refptr<base::SingleThreadTaskRunner> proxy_; 61 scoped_refptr<base::SingleThreadTaskRunner> proxy_;
61 62
62 DISALLOW_COPY_AND_ASSIGN(StartupTaskRunner); 63 DISALLOW_COPY_AND_ASSIGN(StartupTaskRunner);
63 }; 64 };
64 65
65 } // namespace content 66 } // namespace content
66 #endif // CONTENT_BROWSER_STARTUP_TASK_RUNNER_H_ 67 #endif // CONTENT_BROWSER_STARTUP_TASK_RUNNER_H_
OLDNEW
« no previous file with comments | « content/browser/ssl/ssl_request_info.h ('k') | content/browser/storage_partition_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698