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

Side by Side Diff: chrome/browser/diagnostics/recon_diagnostics.cc

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 #include "chrome/browser/diagnostics/recon_diagnostics.h" 5 #include "chrome/browser/diagnostics/recon_diagnostics.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "base/files/file_util.h" 12 #include "base/files/file_util.h"
13 #include "base/json/json_reader.h" 13 #include "base/json/json_reader.h"
14 #include "base/json/json_string_value_serializer.h" 14 #include "base/json/json_string_value_serializer.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/scoped_ptr.h"
16 #include "base/path_service.h" 17 #include "base/path_service.h"
17 #include "base/strings/string_number_conversions.h" 18 #include "base/strings/string_number_conversions.h"
18 #include "base/strings/string_util.h" 19 #include "base/strings/string_util.h"
19 #include "base/strings/stringprintf.h" 20 #include "base/strings/stringprintf.h"
20 #include "base/strings/utf_string_conversions.h" 21 #include "base/strings/utf_string_conversions.h"
21 #include "base/sys_info.h" 22 #include "base/sys_info.h"
22 #include "build/build_config.h" 23 #include "build/build_config.h"
23 #include "chrome/browser/diagnostics/diagnostics_test.h" 24 #include "chrome/browser/diagnostics/diagnostics_test.h"
24 #include "chrome/common/channel_info.h" 25 #include "chrome/common/channel_info.h"
25 #include "chrome/common/chrome_constants.h" 26 #include "chrome/common/chrome_constants.h"
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 433
433 DiagnosticsTest* MakeResourcesFileTest() { 434 DiagnosticsTest* MakeResourcesFileTest() {
434 return new PathTest(kPathsToTest[2]); 435 return new PathTest(kPathsToTest[2]);
435 } 436 }
436 437
437 DiagnosticsTest* MakeUserDirTest() { return new PathTest(kPathsToTest[3]); } 438 DiagnosticsTest* MakeUserDirTest() { return new PathTest(kPathsToTest[3]); }
438 439
439 DiagnosticsTest* MakeVersionTest() { return new VersionTest(); } 440 DiagnosticsTest* MakeVersionTest() { return new VersionTest(); }
440 441
441 } // namespace diagnostics 442 } // namespace diagnostics
OLDNEW
« no previous file with comments | « chrome/browser/devtools/devtools_protocol.h ('k') | chrome/browser/extensions/api/gcd_private/privet_v3_context_getter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698