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

Unified Diff: third_party/closure_compiler/runner/src/com/google/javascript/jscomp/ChromePassConfig.java

Issue 2629323002: Remove Chromium's custom closure runner. (Closed)
Patch Set: merge Created 3 years, 11 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: third_party/closure_compiler/runner/src/com/google/javascript/jscomp/ChromePassConfig.java
diff --git a/third_party/closure_compiler/runner/src/com/google/javascript/jscomp/ChromePassConfig.java b/third_party/closure_compiler/runner/src/com/google/javascript/jscomp/ChromePassConfig.java
deleted file mode 100644
index d048f015e5b6a9c7f7da63de142e2a7e93174d02..0000000000000000000000000000000000000000
--- a/third_party/closure_compiler/runner/src/com/google/javascript/jscomp/ChromePassConfig.java
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2014 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.
-
-package com.google.javascript.jscomp;
-
-import java.util.List;
-
-public class ChromePassConfig extends PassConfig.PassConfigDelegate {
- public ChromePassConfig(CompilerOptions options) {
- super(new DefaultPassConfig(options));
- }
-
- @Override
- protected List<PassFactory> getChecks() {
- List<PassFactory> checks = super.getChecks();
- checks.add(0, chromePass);
- return checks;
- }
-
- final static PassFactory chromePass = new PassFactory("chromePass", true) {
- @Override
- protected CompilerPass create(AbstractCompiler compiler) {
- return new ChromePass(compiler);
- }
- };
-}

Powered by Google App Engine
This is Rietveld 408576698