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

Side by Side Diff: content/public/test/test_web_contents_factory.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
« no previous file with comments | « content/public/test/test_launcher.h ('k') | content/renderer/devtools/v8_sampling_profiler.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 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 CONTENT_PUBLIC_TEST_TEST_WEB_CONTENTS_FACTORY_H_ 5 #ifndef CONTENT_PUBLIC_TEST_TEST_WEB_CONTENTS_FACTORY_H_
6 #define CONTENT_PUBLIC_TEST_TEST_WEB_CONTENTS_FACTORY_H_ 6 #define CONTENT_PUBLIC_TEST_TEST_WEB_CONTENTS_FACTORY_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/scoped_vector.h" 10 #include "base/memory/scoped_vector.h"
10 11
11 namespace content { 12 namespace content {
12 class BrowserContext; 13 class BrowserContext;
13 class RenderViewHostTestEnabler; 14 class RenderViewHostTestEnabler;
14 class WebContents; 15 class WebContents;
15 16
16 // A helper class to create test web contents (tabs) for unit tests, without 17 // A helper class to create test web contents (tabs) for unit tests, without
17 // inheriting from RenderViewTestHarness. Can create web contents, and will 18 // inheriting from RenderViewTestHarness. Can create web contents, and will
18 // clean up after itself upon destruction. Owns all created web contents. 19 // clean up after itself upon destruction. Owns all created web contents.
(...skipping 21 matching lines...) Expand all
40 41
41 // The vector of web contents that this class created. 42 // The vector of web contents that this class created.
42 ScopedVector<WebContents> web_contents_; 43 ScopedVector<WebContents> web_contents_;
43 44
44 DISALLOW_COPY_AND_ASSIGN(TestWebContentsFactory); 45 DISALLOW_COPY_AND_ASSIGN(TestWebContentsFactory);
45 }; 46 };
46 47
47 } // namespace content 48 } // namespace content
48 49
49 #endif // CONTENT_PUBLIC_TEST_TEST_WEB_CONTENTS_FACTORY_H_ 50 #endif // CONTENT_PUBLIC_TEST_TEST_WEB_CONTENTS_FACTORY_H_
OLDNEW
« no previous file with comments | « content/public/test/test_launcher.h ('k') | content/renderer/devtools/v8_sampling_profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698