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

Side by Side Diff: third_party/robolectric/template_processor/src/org/chromium/testing/robolectric/template/TemplateFileInfo.java

Issue 2200413004: Pass template files explicitly to Robolectric template processor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Jbudoricks commnets Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.testing.robolectric.template;
6
7 import java.nio.file.Path;
8
9 /**
10 * Simple container class for path info about template files.
11 */
12 public class TemplateFileInfo {
13
14 private Path mOutputFile;
15 private Path mTemplateFile;
16
17 public TemplateFileInfo(Path templateFile, Path outputFile) {
18 mOutputFile = outputFile;
19 mTemplateFile = templateFile;
20 }
21
22 public Path getTemplateFile() {
23 return mTemplateFile;
24 }
25
26 public Path getOutputFile() {
27 return mOutputFile;
28 }
29 }
OLDNEW
« no previous file with comments | « third_party/robolectric/template_processor/src/org/chromium/testing/robolectric/template/ProcessTemplateArgParser.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698