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

Side by Side Diff: android_webview/java/src/org/chromium/android_webview/AwContents.java

Issue 646693003: Removing the CVC parameter from ShowRepostFormWarningDialog Callback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed review comments. 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
« no previous file with comments | « no previous file | android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.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 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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.android_webview; 5 package org.chromium.android_webview;
6 6
7 import android.annotation.SuppressLint; 7 import android.annotation.SuppressLint;
8 import android.app.Activity; 8 import android.app.Activity;
9 import android.content.ComponentCallbacks2; 9 import android.content.ComponentCallbacks2;
10 import android.content.Context; 10 import android.content.Context;
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 mContentsClient = contentsClient; 574 mContentsClient = contentsClient;
575 mAwViewMethods = new AwViewMethodsImpl(); 575 mAwViewMethods = new AwViewMethodsImpl();
576 mFullScreenTransitionsState = new FullScreenTransitionsState( 576 mFullScreenTransitionsState = new FullScreenTransitionsState(
577 mContainerView, mInternalAccessAdapter, mAwViewMethods); 577 mContainerView, mInternalAccessAdapter, mAwViewMethods);
578 mContentViewClient = new AwContentViewClient(contentsClient, settings, t his, mContext); 578 mContentViewClient = new AwContentViewClient(contentsClient, settings, t his, mContext);
579 mLayoutSizer = dependencyFactory.createLayoutSizer(); 579 mLayoutSizer = dependencyFactory.createLayoutSizer();
580 mSettings = settings; 580 mSettings = settings;
581 mDIPScale = DeviceDisplayInfo.create(mContext).getDIPScale(); 581 mDIPScale = DeviceDisplayInfo.create(mContext).getDIPScale();
582 mLayoutSizer.setDelegate(new AwLayoutSizerDelegate()); 582 mLayoutSizer.setDelegate(new AwLayoutSizerDelegate());
583 mLayoutSizer.setDIPScale(mDIPScale); 583 mLayoutSizer.setDIPScale(mDIPScale);
584 mWebContentsDelegate = new AwWebContentsDelegateAdapter( 584 mWebContentsDelegate = new AwWebContentsDelegateAdapter(this, contentsCl ient,
585 contentsClient, mContainerView, mContext); 585 mContainerView, mContext);
586 mContentsClientBridge = new AwContentsClientBridge(contentsClient, 586 mContentsClientBridge = new AwContentsClientBridge(contentsClient,
587 mBrowserContext.getKeyStore(), AwContentsStatics.getClientCertLo okupTable()); 587 mBrowserContext.getKeyStore(), AwContentsStatics.getClientCertLo okupTable());
588 mZoomControls = new AwZoomControls(this); 588 mZoomControls = new AwZoomControls(this);
589 mIoThreadClient = new IoThreadClientImpl(); 589 mIoThreadClient = new IoThreadClientImpl();
590 mInterceptNavigationDelegate = new InterceptNavigationDelegateImpl(); 590 mInterceptNavigationDelegate = new InterceptNavigationDelegateImpl();
591 591
592 AwSettings.ZoomSupportChangeListener zoomListener = 592 AwSettings.ZoomSupportChangeListener zoomListener =
593 new AwSettings.ZoomSupportChangeListener() { 593 new AwSettings.ZoomSupportChangeListener() {
594 @Override 594 @Override
595 public void onGestureZoomSupportChanged( 595 public void onGestureZoomSupportChanged(
(...skipping 1952 matching lines...) Expand 10 before | Expand all | Expand 10 after
2548 2548
2549 private native void nativeSetJsOnlineProperty(long nativeAwContents, boolean networkUp); 2549 private native void nativeSetJsOnlineProperty(long nativeAwContents, boolean networkUp);
2550 2550
2551 private native void nativeTrimMemory(long nativeAwContents, int level, boole an visible); 2551 private native void nativeTrimMemory(long nativeAwContents, int level, boole an visible);
2552 2552
2553 private native void nativeCreatePdfExporter(long nativeAwContents, AwPdfExpo rter awPdfExporter); 2553 private native void nativeCreatePdfExporter(long nativeAwContents, AwPdfExpo rter awPdfExporter);
2554 2554
2555 private native void nativePreauthorizePermission(long nativeAwContents, Stri ng origin, 2555 private native void nativePreauthorizePermission(long nativeAwContents, Stri ng origin,
2556 long resources); 2556 long resources);
2557 } 2557 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698