Index: chrome/common/logging_chrome.h |
diff --git a/chrome/common/logging_chrome.h b/chrome/common/logging_chrome.h |
index 91cd2765a522ca3d9df0d3f8f52ca87ff8fcd2fa..5fb8724a86c8e117938a34490c0c04b1bd09bdf1 100644 |
--- a/chrome/common/logging_chrome.h |
+++ b/chrome/common/logging_chrome.h |
@@ -11,9 +11,8 @@ |
#include "base/logging.h" |
#include "base/time/time.h" |
-class CommandLine; |
- |
namespace base { |
+class CommandLine; |
class FilePath; |
} |
@@ -32,15 +31,15 @@ namespace logging { |
// normally appear for assertions and crashes, and makes any catchable |
// errors (namely assertions) available via GetSilencedErrorCount() |
// and GetSilencedError(). |
-void InitChromeLogging(const CommandLine& command_line, |
+void InitChromeLogging(const base::CommandLine& command_line, |
OldFileDeletionState delete_old_log_file); |
#if defined(OS_CHROMEOS) |
// Get the log file location. |
-base::FilePath GetSessionLogFile(const CommandLine& command_line); |
+base::FilePath GetSessionLogFile(const base::CommandLine& command_line); |
// Redirects chrome logging to the appropriate session log dir. |
-void RedirectChromeLogging(const CommandLine& command_line); |
+void RedirectChromeLogging(const base::CommandLine& command_line); |
#endif |
// Call when done using logging for Chrome. |