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

Unified Diff: chrome/test/base/test_launcher_utils.cc

Issue 22293003: Clean up compositor initialization/destruction. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanupcompositor: UseRealGLBindings in NetInternalsTest Created 7 years, 4 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: chrome/test/base/test_launcher_utils.cc
diff --git a/chrome/test/base/test_launcher_utils.cc b/chrome/test/base/test_launcher_utils.cc
index fac13af854c729d4321c9c0fdeddc4449781a2ec..1f81ef93dcfb7a7959d9713d58e1a451c9dd087b 100644
--- a/chrome/test/base/test_launcher_utils.cc
+++ b/chrome/test/base/test_launcher_utils.cc
@@ -12,7 +12,6 @@
#include "base/strings/string_number_conversions.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
-#include "ui/gl/gl_switches.h"
#if defined(USE_AURA)
#include "ui/views/corewm/corewm_switches.h"
@@ -97,14 +96,4 @@ bool OverrideUserDataDir(const base::FilePath& user_data_dir) {
return success;
}
-bool OverrideGLImplementation(CommandLine* command_line,
- const std::string& implementation_name) {
- if (command_line->HasSwitch(switches::kUseGL))
- return false;
-
- command_line->AppendSwitchASCII(switches::kUseGL, implementation_name);
-
- return true;
-}
-
} // namespace test_launcher_utils

Powered by Google App Engine
This is Rietveld 408576698