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

Side by Side Diff: content/browser/browser_process_sub_thread.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
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_PROCESS_SUB_THREAD_H_ 5 #ifndef CONTENT_BROWSER_BROWSER_PROCESS_SUB_THREAD_H_
6 #define CONTENT_BROWSER_BROWSER_PROCESS_SUB_THREAD_H_ 6 #define CONTENT_BROWSER_BROWSER_PROCESS_SUB_THREAD_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/macros.h"
9 #include "build/build_config.h"
9 #include "content/browser/browser_thread_impl.h" 10 #include "content/browser/browser_thread_impl.h"
10 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
11 12
12 #if defined(OS_WIN) 13 #if defined(OS_WIN)
13 namespace base { 14 namespace base {
14 namespace win { 15 namespace win {
15 class ScopedCOMInitializer; 16 class ScopedCOMInitializer;
16 } 17 }
17 } 18 }
18 #endif 19 #endif
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 53
53 // Each specialized thread has its own notification service. 54 // Each specialized thread has its own notification service.
54 scoped_ptr<NotificationService> notification_service_; 55 scoped_ptr<NotificationService> notification_service_;
55 56
56 DISALLOW_COPY_AND_ASSIGN(BrowserProcessSubThread); 57 DISALLOW_COPY_AND_ASSIGN(BrowserProcessSubThread);
57 }; 58 };
58 59
59 } // namespace content 60 } // namespace content
60 61
61 #endif // CONTENT_BROWSER_BROWSER_PROCESS_SUB_THREAD_H_ 62 #endif // CONTENT_BROWSER_BROWSER_PROCESS_SUB_THREAD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698