Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdaterTest.java

Issue 29533581: Noissue - Remove JsEngine constructor for one special case (Closed) Base URL: github.com:abby-sergz/libadblockplus-android.git
Patch Set: Created Sept. 1, 2017, 9:56 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | libadblockplus-android/src/org/adblockplus/libadblockplus/JsEngine.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 23 matching lines...) Expand all
34 { 34 {
35 super.setUp(); 35 super.setUp();
36 36
37 AppInfo appInfo = AppInfo 37 AppInfo appInfo = AppInfo
38 .builder() 38 .builder()
39 .setName("test") 39 .setName("test")
40 .setVersion("1.0.1") 40 .setVersion("1.0.1")
41 .build(); 41 .build();
42 42
43 mockWebRequest = new MockWebRequest(); 43 mockWebRequest = new MockWebRequest();
44 JsEngine jsEngine = new JsEngine(appInfo, mockWebRequest, 44 JsEngine jsEngine = new JsEngine(appInfo, null, mockWebRequest,
45 getContext().getFilesDir().getAbsolutePath()); 45 getContext().getFilesDir().getAbsolutePath());
46 46
47 filterEngine = new FilterEngine(jsEngine); 47 filterEngine = new FilterEngine(jsEngine);
48 } 48 }
49 } 49 }
OLDNEW
« no previous file with comments | « no previous file | libadblockplus-android/src/org/adblockplus/libadblockplus/JsEngine.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld