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

Side by Side Diff: chrome/common/logging_chrome.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 "build/build_config.h" 5 #include "build/build_config.h"
6 6
7 // Need to include this before most other files because it defines 7 // Need to include this before most other files because it defines
8 // IPC_MESSAGE_LOG_ENABLED. We need to use it to define 8 // IPC_MESSAGE_LOG_ENABLED. We need to use it to define
9 // IPC_MESSAGE_MACROS_LOG_ENABLED so render_messages.h will generate the 9 // IPC_MESSAGE_MACROS_LOG_ENABLED so render_messages.h will generate the
10 // ViewMsgLog et al. functions. 10 // ViewMsgLog et al. functions.
(...skipping 21 matching lines...) Expand all
32 #include <string> // NOLINT 32 #include <string> // NOLINT
33 33
34 #include "base/base_switches.h" 34 #include "base/base_switches.h"
35 #include "base/command_line.h" 35 #include "base/command_line.h"
36 #include "base/compiler_specific.h" 36 #include "base/compiler_specific.h"
37 #include "base/debug/debugger.h" 37 #include "base/debug/debugger.h"
38 #include "base/debug/dump_without_crashing.h" 38 #include "base/debug/dump_without_crashing.h"
39 #include "base/environment.h" 39 #include "base/environment.h"
40 #include "base/files/file_path.h" 40 #include "base/files/file_path.h"
41 #include "base/files/file_util.h" 41 #include "base/files/file_util.h"
42 #include "base/memory/scoped_ptr.h"
42 #include "base/path_service.h" 43 #include "base/path_service.h"
43 #include "base/strings/string_number_conversions.h" 44 #include "base/strings/string_number_conversions.h"
44 #include "base/strings/string_util.h" 45 #include "base/strings/string_util.h"
45 #include "base/strings/stringprintf.h" 46 #include "base/strings/stringprintf.h"
46 #include "base/strings/utf_string_conversions.h" 47 #include "base/strings/utf_string_conversions.h"
47 #include "base/threading/thread_restrictions.h" 48 #include "base/threading/thread_restrictions.h"
48 #include "chrome/common/chrome_constants.h" 49 #include "chrome/common/chrome_constants.h"
49 #include "chrome/common/chrome_paths.h" 50 #include "chrome/common/chrome_paths.h"
50 #include "chrome/common/chrome_switches.h" 51 #include "chrome/common/chrome_switches.h"
51 #include "chrome/common/env_vars.h" 52 #include "chrome/common/env_vars.h"
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 time_deets.year, 407 time_deets.year,
407 time_deets.month, 408 time_deets.month,
408 time_deets.day_of_month, 409 time_deets.day_of_month,
409 time_deets.hour, 410 time_deets.hour,
410 time_deets.minute, 411 time_deets.minute,
411 time_deets.second); 412 time_deets.second);
412 return base_path.InsertBeforeExtensionASCII(suffix); 413 return base_path.InsertBeforeExtensionASCII(suffix);
413 } 414 }
414 415
415 } // namespace logging 416 } // namespace logging
OLDNEW
« no previous file with comments | « chrome/common/component_flash_hint_file_linux.cc ('k') | chrome/common/safe_browsing/binary_feature_extractor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698