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

Side by Side Diff: chrome/test/android/unit_tests_apk/src/org/chromium/chrome/unit_tests_apk/ChromeNativeTestApplication.java

Issue 2768023002: Move remaining @CalledByNative methods out of ChromeApplication. (Closed)
Patch Set: Use DISALLOW_IMPLICIT_CONSTRUCTORS instead of DISALLOW_COPY_AND_ASSIGN Created 3 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/ui/webui/browsing_history_handler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.chrome.unit_tests_apk; 5 package org.chromium.chrome.unit_tests_apk;
6 6
7 import org.chromium.chrome.browser.ChromeApplication; 7 import org.chromium.chrome.browser.ChromeApplication;
8 8
9 /** 9 /**
10 * A stub implementation of the chrome application to be used in chrome unit_tes ts. 10 * A stub implementation of the chrome application to be used in chrome unit_tes ts.
11 */ 11 */
12 public class ChromeNativeTestApplication extends ChromeApplication { 12 public class ChromeNativeTestApplication extends ChromeApplication {
13 13
14 @Override 14 @Override
15 protected boolean areParentalControlsEnabled() {
16 return false;
17 }
18
19 @Override
20 public void initCommandLine() { 15 public void initCommandLine() {
21 } 16 }
22 } 17 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/browsing_history_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698