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

Side by Side Diff: components/navigation_interception/android/java/src/org/chromium/components/navigation_interception/NavigationParams.java

Issue 600983002: [Checkstyle] Fix misc style issues in Java files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build Created 6 years, 2 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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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.components.navigation_interception; 5 package org.chromium.components.navigation_interception;
6 6
7 import org.chromium.base.CalledByNative; 7 import org.chromium.base.CalledByNative;
8 8
9 public class NavigationParams { 9 public class NavigationParams {
10 // Target url of the navigation. 10 // Target url of the navigation.
11 public final String url; 11 public final String url;
(...skipping 15 matching lines...) Expand all
27 this.isRedirect = isRedirect; 27 this.isRedirect = isRedirect;
28 } 28 }
29 29
30 @CalledByNative 30 @CalledByNative
31 public static NavigationParams create(String url, boolean isPost, boolean ha sUserGesture, 31 public static NavigationParams create(String url, boolean isPost, boolean ha sUserGesture,
32 int pageTransitionType, boolean isRedirect) { 32 int pageTransitionType, boolean isRedirect) {
33 return new NavigationParams(url, isPost, hasUserGesture, pageTransitionT ype, 33 return new NavigationParams(url, isPost, hasUserGesture, pageTransitionT ype,
34 isRedirect); 34 isRedirect);
35 } 35 }
36 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698