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

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

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h"
9 #include "build/build_config.h" 10 #include "build/build_config.h"
10 #include "content/browser/browser_thread_impl.h" 11 #include "content/browser/browser_thread_impl.h"
11 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
12 13
13 #if defined(OS_WIN) 14 #if defined(OS_WIN)
14 namespace base { 15 namespace base {
15 namespace win { 16 namespace win {
16 class ScopedCOMInitializer; 17 class ScopedCOMInitializer;
17 } 18 }
18 } 19 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 54
54 // Each specialized thread has its own notification service. 55 // Each specialized thread has its own notification service.
55 scoped_ptr<NotificationService> notification_service_; 56 scoped_ptr<NotificationService> notification_service_;
56 57
57 DISALLOW_COPY_AND_ASSIGN(BrowserProcessSubThread); 58 DISALLOW_COPY_AND_ASSIGN(BrowserProcessSubThread);
58 }; 59 };
59 60
60 } // namespace content 61 } // namespace content
61 62
62 #endif // CONTENT_BROWSER_BROWSER_PROCESS_SUB_THREAD_H_ 63 #endif // CONTENT_BROWSER_BROWSER_PROCESS_SUB_THREAD_H_
OLDNEW
« no previous file with comments | « content/browser/browser_main.cc ('k') | content/browser/devtools/devtools_frame_trace_recorder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698