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

Unified Diff: base/test/command_line_test_util.cc

Issue 1908633002: Introduce ScopedCommandLine (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: base/test/command_line_test_util.cc
diff --git a/base/test/command_line_test_util.cc b/base/test/command_line_test_util.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bc886b1e7761196f76d07a33792bf1a6731506ee
--- /dev/null
+++ b/base/test/command_line_test_util.cc
@@ -0,0 +1,22 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/test/command_line_test_util.h"
+
+namespace base {
+namespace test {
+
+ScopedCommandLine::ScopedCommandLine()
Paweł Hajdan Jr. 2016/04/21 11:55:50 We have a very similar class in base/test/test_sui
robliao 2016/04/21 18:26:45 I wanted to hold off on chrome/browser/extensions/
+ : original_command_line_(*base::CommandLine::ForCurrentProcess()) {}
+
+ScopedCommandLine::~ScopedCommandLine() {
+ *base::CommandLine::ForCurrentProcess() = original_command_line_;
+}
+
+CommandLine* ScopedCommandLine::GetProcessCommandLine() {
+ return base::CommandLine::ForCurrentProcess();
+}
+
+} // namespace test
+} // namespace base
« no previous file with comments | « base/test/command_line_test_util.h ('k') | chrome/browser/extensions/activity_log/activity_log_enabled_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698