diff options
Diffstat (limited to 'base/command_line.h')
-rw-r--r-- | base/command_line.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/command_line.h b/base/command_line.h index b2b4185..c68711a 100644 --- a/base/command_line.h +++ b/base/command_line.h @@ -35,6 +35,7 @@ class CommandLine { // A constructor for CommandLines that are used only to carry arguments. enum ArgumentsOnly { ARGUMENTS_ONLY }; explicit CommandLine(ArgumentsOnly args_only); + ~CommandLine(); #if defined(OS_WIN) // The type of native command line arguments. @@ -203,7 +204,7 @@ class CommandLine { private: friend class InProcessBrowserTest; - CommandLine() {} + CommandLine(); // Used by InProcessBrowserTest. static CommandLine* ForCurrentProcessMutable() { |