code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef WEBLAYER_PUBLIC_GOOGLE_ACCOUNT_ACCESS_TOKEN_FETCH_DELEGATE_H_ #define WEBLAYER_PUBLIC_GOOGLE_ACCOUNT_ACCESS_TOKEN_FETCH_DELEGATE_H_ #include <set> #include <string> #...
Zhao-PengFei35/chromium_src_4
weblayer/public/google_account_access_token_fetch_delegate.h
C++
unknown
2,048
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef WEBLAYER_PUBLIC_GOOGLE_ACCOUNTS_DELEGATE_H_ #define WEBLAYER_PUBLIC_GOOGLE_ACCOUNTS_DELEGATE_H_ #include <string> namespace signin { struct ManageAccountsParams; } n...
Zhao-PengFei35/chromium_src_4
weblayer/public/google_accounts_delegate.h
C++
unknown
1,092
# Copyright 2021 The Chromium Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Presubmit tests for weblayer public API.""" import glob import logging import os import shutil import subprocess import sys import tempfile USE_PYTHON3 = True _WEBLAYER_PUBL...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/PRESUBMIT.py
Python
unknown
879
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.os.RemoteException; import androidx.annotation.NonNull; import androidx.concurrent.futures.CallbackToFutureAdapter; import com...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/CookieManager.java
Java
unknown
5,079
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import org.chromium.webengine.interfaces.ExceptionType; class ExceptionHelper { static Exception createException(@ExceptionType int type, ...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/ExceptionHelper.java
Java
unknown
748
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; /** * Fullscreen callback notifies when fullscreen mode starts and ends. * It expects an implementation to enter and exit fullscreen mode, e....
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/FullscreenCallback.java
Java
unknown
1,621
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.os.Handler; import android.os.Looper; import org.chromium.webengine.interfaces.IFullscreenCallbackDelegate; import org.chromium...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/FullscreenCallbackDelegate.java
Java
unknown
1,606
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.os.RemoteException; import org.chromium.webengine.interfaces.IFullscreenClient; /** * {@link FullscreenClient} is passed in {...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/FullscreenClient.java
Java
unknown
860
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; /** * An interface for listening to postMessages from the web content. */ public interface MessageEventListener { public abstract void on...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/MessageEventListener.java
Java
unknown
359
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.net.Uri; import androidx.annotation.NonNull; import org.chromium.webengine.interfaces.INavigationParams; /** * {@link Naviga...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/Navigation.java
Java
unknown
1,399
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import androidx.annotation.NonNull; /** * An interface for observing changes to a Tab. */ public interface NavigationObserver { /** ...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/NavigationObserver.java
Java
unknown
3,186
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.os.Handler; import android.os.Looper; import androidx.annotation.NonNull; import org.chromium.base.ObserverList; import org.ch...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/NavigationObserverDelegate.java
Java
unknown
3,220
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; /** * Error thrown for API access violations. */ public class RestrictedAPIException extends RuntimeException { public RestrictedAPIExcep...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/RestrictedAPIException.java
Java
unknown
375
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.net.Uri; import android.os.RemoteException; import androidx.annotation.NonNull; import androidx.concurrent.futures.CallbackToFu...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/Tab.java
Java
unknown
12,113
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import androidx.annotation.NonNull; import androidx.annotation.Nullable; /** * An interface for observing changes to the set of Tabs in a Web...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/TabListObserver.java
Java
unknown
1,605
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.os.Handler; import android.os.Looper; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import org.chro...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/TabListObserverDelegate.java
Java
unknown
3,838
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.os.Handler; import android.os.Looper; import android.os.RemoteException; import androidx.annotation.NonNull; import androidx.an...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/TabManager.java
Java
unknown
4,412
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.os.RemoteException; import androidx.annotation.NonNull; import androidx.concurrent.futures.CallbackToFutureAdapter; import com...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/TabNavigationController.java
Java
unknown
6,291
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.graphics.Bitmap; import androidx.annotation.NonNull; import androidx.annotation.Nullable; /** * An interface for observing ch...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/TabObserver.java
Java
unknown
1,553
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.graphics.Bitmap; import android.net.Uri; import android.os.Handler; import android.os.Looper; import androidx.annotation.NonNul...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/TabObserverDelegate.java
Java
unknown
2,654
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import androidx.annotation.Nullable; import org.chromium.webengine.interfaces.ITabParams; import java.util.HashMap; import java.util.HashSet;...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/TabRegistry.java
Java
unknown
1,428
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.os.Looper; import android.util.AndroidRuntimeException; class ThreadCheck { static void ensureOnUiThread() { if (Lo...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/ThreadCheck.java
Java
unknown
483
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.os.RemoteException; import androidx.annotation.NonNull; import androidx.concurrent.futures.CallbackToFutureAdapter; import com...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/WebEngine.java
Java
unknown
5,689
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import org.chromium.webengine.interfaces.IWebEngineParams; import ja...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/WebEngineParams.java
Java
unknown
4,225
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.os.IBinder; import android.os.RemoteExc...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/WebFragment.java
Java
unknown
9,825
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.ServiceConnection; ...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/WebSandbox.java
Java
unknown
19,311
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @IntDef({Ex...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/ExceptionType.java
Java
unknown
554
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; oneway interface IBooleanCallback { void onResult(in boolean result) = 1; // TODO(swestphal): Replace parameters with actua...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IBooleanCallback.aidl
AIDL
unknown
432
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.IBooleanCallback; import org.chromium.webengine.interfaces.IStringCallback; oneway interfa...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/ICookieManagerDelegate.aidl
AIDL
unknown
489
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.IFullscreenClient; oneway interface IFullscreenCallbackDelegate { void onEnterFullscre...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IFullscreenCallbackDelegate.aidl
AIDL
unknown
389
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; // A FullscreenClient that is passed to the webengine to exit fullscreen // mode programmatically. oneway interface IFullscreenClien...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IFullscreenClient.aidl
AIDL
unknown
357
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.INavigationParams; oneway interface INavigationObserverDelegate { void notifyNavigatio...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/INavigationObserverDelegate.aidl
AIDL
unknown
643
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import android.net.Uri; import org.chromium.webengine.interfaces.ITabProxy; import org.chromium.webengine.interfaces.ITabNavigation...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/INavigationParams.aidl
AIDL
unknown
431
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; oneway interface IPostMessageCallback { void onPostMessage(in String result, in String origin) = 1; }
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IPostMessageCallback.aidl
AIDL
unknown
293
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; oneway interface IStringCallback { void onResult(in String result) = 1; // TODO(swestphal): Replace parameters with actual ...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IStringCallback.aidl
AIDL
unknown
430
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.ITabParams; oneway interface ITabCallback { void onResult(in ITabParams tabParams) = 1...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/ITabCallback.aidl
AIDL
unknown
324
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.ITabParams; oneway interface ITabListObserverDelegate { void notifyActiveTabChanged(in...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/ITabListObserverDelegate.aidl
AIDL
unknown
555
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.ITabProxy; import org.chromium.webengine.interfaces.ITabCallback; import org.chromium.weben...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/ITabManagerDelegate.aidl
AIDL
unknown
627
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.IBooleanCallback; import org.chromium.webengine.interfaces.INavigationObserverDelegate; on...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/ITabNavigationControllerProxy.aidl
AIDL
unknown
700
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import android.graphics.Bitmap; import org.chromium.webengine.interfaces.ITabParams; oneway interface ITabObserverDelegate { v...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/ITabObserverDelegate.aidl
AIDL
unknown
513
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.ITabProxy; import org.chromium.webengine.interfaces.ITabNavigationControllerProxy; parcela...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/ITabParams.aidl
AIDL
unknown
459
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.IFullscreenCallbackDelegate; import org.chromium.webengine.interfaces.IPostMessageCallback;...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/ITabProxy.aidl
AIDL
unknown
1,206
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.IBooleanCallback; import org.chromium.webengine.interfaces.ITabListObserverDelegate; onewa...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IWebEngineDelegate.aidl
AIDL
unknown
437
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.ICookieManagerDelegate; import org.chromium.webengine.interfaces.ITabManagerDelegate; impor...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IWebEngineDelegateClient.aidl
AIDL
unknown
738
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; parcelable IWebEngineParams { String profileName; String persistenceId; boolean isIncognito; boolean isExternalInten...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IWebEngineParams.aidl
AIDL
unknown
376
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import android.os.Bundle; import org.chromium.webengine.interfaces.IWebFragmentEventsDelegateClient; import org.chromium.weblayer_p...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IWebFragmentEventsDelegate.aidl
AIDL
unknown
1,197
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import android.view.SurfaceControlViewHost.SurfacePackage; import org.chromium.weblayer_private.interfaces.IObjectWrapper; oneway ...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IWebFragmentEventsDelegateClient.aidl
AIDL
unknown
923
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import android.view.SurfaceControlViewHost.SurfacePackage; oneway interface IWebSandboxCallback { void onBrowserProcessInitiali...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IWebSandboxCallback.aidl
AIDL
unknown
386
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.webengine.interfaces; import org.chromium.webengine.interfaces.IBooleanCallback; import org.chromium.webengine.interfaces.IStringCallback; import org.chro...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/webengine/interfaces/IWebSandboxService.aidl
AIDL
unknown
942
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; /** * Used to override floating some action mode menu items. * * @since 88 */ abstract class ActionModeCallback { /** * Called when...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/ActionModeCallback.java
Java
unknown
676
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @IntDef({ActionModeItem...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/ActionModeItemType.java
Java
unknown
609
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.content.Context; import android.content.Intent; import android.os.RemoteException; import org.chromium.weblayer_private.interfac...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/BroadcastReceiver.java
Java
unknown
983
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.os.RemoteException; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import org.chromium.weblayer_priva...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/Browser.java
Java
unknown
15,698
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.app.Service; import android.content.Intent; import android.os.IBinder; /** * Service running the browser process for a BrowserF...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/BrowserInProcessService.java
Java
unknown
589
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.content.Context; import android.os.Handler; import android.os.Looper; import android.os.RemoteException; import org.chromium.web...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/BrowserProcessBinder.java
Java
unknown
3,043
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.app.Service; import android.content.Intent; import android.os.IBinder; /** * Service running the browser process for a BrowserF...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/BrowserSandboxService.java
Java
unknown
586
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * @hide */ @IntDe...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/BrowsingDataType.java
Java
unknown
798
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; /** * Simple callback that takes a generic value. * @param <T> The type of value passed into the callback. */ interface Callback<T> { voi...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/Callback.java
Java
unknown
344
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.graphics.Bitmap; import androidx.annotation.Nullable; /** * Callback for capturing screenshots. */ interface CaptureScreenSho...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/CaptureScreenShotCallback.java
Java
unknown
571
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.app.Service; import android.content.Context; import android.content.Intent; import android.os.IBinder; import android.os.RemoteEx...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/ChildProcessService.java
Java
unknown
5,066
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.net.Uri; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import org.chromium.weblayer_private.interfac...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/ContextMenuParams.java
Java
unknown
2,394
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * @hide */ @IntDe...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/CookieChangeCause.java
Java
unknown
1,772
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.NonNull; /** * Callback used to listen for cookie changes. */ abstract class CookieChangedCallback { public ab...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/CookieChangedCallback.java
Java
unknown
405
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.net.Uri; import android.os.RemoteException; import android.webkit.ValueCallback; import androidx.annotation.NonNull; import andr...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/CookieManager.java
Java
unknown
5,579
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.net.Uri; import android.os.Handler; import android.os.Looper; import android.os.RemoteException; import org.chromium.webengine.i...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/CookieManagerDelegate.java
Java
unknown
3,560
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.NonNull; /** * Callback object for results of asynchronous {@link CrashReporterController} operations. */ abstract...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/CrashReporterCallback.java
Java
unknown
1,485
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.content.Context; import android.os.Bundle; import android.os.RemoteException; import androidx.annotation.NonNull; import android...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/CrashReporterController.java
Java
unknown
6,832
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * @hide */ @IntDe...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/DarkModeStrategy.java
Java
unknown
1,566
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.os.RemoteException; import androidx.annotation.NonNull; import org.chromium.weblayer_private.interfaces.APICallException; impor...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/Download.java
Java
unknown
4,400
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.net.Uri; import android.webkit.ValueCallback; import androidx.annotation.NonNull; import androidx.annotation.Nullable; /** * A...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/DownloadCallback.java
Java
unknown
3,531
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * @hide */ @IntDe...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/DownloadError.java
Java
unknown
1,343
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * @hide */ @IntDe...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/DownloadState.java
Java
unknown
936
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.NonNull; /** * ErrorPage contains the html to show when an error is encountered. */ class ErrorPage { public f...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/ErrorPage.java
Java
unknown
549
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.NonNull; import androidx.annotation.Nullable; /** * An interface that allows clients to handle error page interacti...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/ErrorPageCallback.java
Java
unknown
1,072
// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import org.chromium.weblayer_private.interfaces.ExceptionType; class ExceptionHelper { static @ExceptionType int convertType(@ExceptionType...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/ExceptionHelper.java
Java
unknown
777
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.NonNull; /** * Allows the embedder to present a custom warning dialog gating external intent launch in * incognito...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/ExternalIntentInIncognitoCallback.java
Java
unknown
1,138
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @IntDef({ExternalIntent...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/ExternalIntentInIncognitoUserDecision.java
Java
unknown
698
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.graphics.Bitmap; import androidx.annotation.Nullable; /** * Informed of changes to the favicon of the current navigation. */ ...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/FaviconCallback.java
Java
unknown
607
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.graphics.Bitmap; import android.os.RemoteException; import androidx.annotation.Nullable; import org.chromium.weblayer_private.i...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/FaviconFetcher.java
Java
unknown
2,468
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; /** * Informed of find in page results. */ abstract class FindInPageCallback { /** * Called when incremental results from a find oper...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/FindInPageCallback.java
Java
unknown
1,044
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.os.RemoteException; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import org.chromium.weblayer_priva...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/FindInPageController.java
Java
unknown
3,710
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.NonNull; /** * Used to configure fullscreen related state. HTML fullscreen support is only enabled if a * Fullscre...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/FullscreenCallback.java
Java
unknown
1,290
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.os.Handler; import android.os.Looper; import android.os.RemoteException; import androidx.annotation.NonNull; import org.chromiu...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/FullscreenCallbackDelegate.java
Java
unknown
1,682
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.NonNull; import java.util.Set; /** * Used to fetch OAuth2 access tokens for the user's current GAIA account. * @s...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/GoogleAccountAccessTokenFetcher.java
Java
unknown
1,643
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * @hide */ @IntDe...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/GoogleAccountServiceType.java
Java
unknown
953
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.NonNull; /** * Used to intercept interaction with GAIA accounts. */ abstract class GoogleAccountsCallback { /*...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/GoogleAccountsCallback.java
Java
unknown
878
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.net.Uri; import androidx.annotation.NonNull; /** * Params passed to {@link GoogleAccountsCallback#onGoogleAccountsRequest}. *...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/GoogleAccountsParams.java
Java
unknown
1,147
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.os.RemoteException; import androidx.annota...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/GooglePayDataCallbacksServiceWrapper.java
Java
unknown
2,177
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.app.Service; import android.content.Intent; import android.os.IBinder; import org.chromium.weblayer_private.interfaces.APICallEx...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/ImageDecoderService.java
Java
unknown
1,022
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * @hide */ @IntDe...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/LoadError.java
Java
unknown
1,620
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.webkit.ValueCallback; /** * Used along with {@link MediaCaptureController} to control and observe Media Capture and Streams * ...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/MediaCaptureCallback.java
Java
unknown
1,945
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.os.RemoteException; import android.webkit.ValueCallback; import androidx.annotation.Nullable; import org.chromium.weblayer_priv...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/MediaCaptureController.java
Java
unknown
3,244
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.os.RemoteException; import androidx.annota...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/MediaPlaybackBaseService.java
Java
unknown
2,830
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; /** * This class handles dialog fragments for casting, such as a {@link * MediaRouteChooserDialogFragment} or a {@link MediaRouteControllerDia...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/MediaRouteDialogFragmentEventHandler.java
Java
unknown
570
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.app.Service; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.m...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/MediaSessionService.java
Java
unknown
2,348
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.webkit.WebResourceResponse; import androidx.annotation.NonNull; /** * Parameters for {@link NavigationController#navigate}. *...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/NavigateParams.java
Java
unknown
6,322
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.net.Uri; import android.os.RemoteException; import androidx.annotation.NonNull; import org.chromium.weblayer_private.interfaces...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/Navigation.java
Java
unknown
18,902
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.net.Uri; import androidx.annotation.NonNull; /** * Informed of interesting events that happen during the lifetime of Navigatio...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/NavigationCallback.java
Java
unknown
6,602
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import android.net.Uri; import android.os.RemoteException; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import org...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/NavigationController.java
Java
unknown
14,188
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.weblayer; import androidx.annotation.IntDef; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * @hide */ @IntDe...
Zhao-PengFei35/chromium_src_4
weblayer/public/java/org/chromium/weblayer/NavigationState.java
Java
unknown
897