blob: 2003174eb4b1c4a9eb391c3b5412f2bdcb301e37 [file] [log] [blame]
Avi Drissman4a8573c2022-09-09 19:35:541// Copyright 2015 The Chromium Authors
michaeln68bf4a8e2015-08-11 01:37:312// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
michaeln68bf4a8e2015-08-11 01:37:315#include "chrome/browser/after_startup_task_utils.h"
Michael Thiessen8b2f7cb2021-08-11 21:56:136#include "chrome/browser/util/jni_headers/AfterStartupTaskUtils_jni.h"
michaeln68bf4a8e2015-08-11 01:37:317
Sam Maier7fe12c12024-01-26 19:22:438using jni_zero::JavaParamRef;
torne86560112016-08-04 15:59:049
michaeln68bf4a8e2015-08-11 01:37:3110namespace android {
11
12class AfterStartupTaskUtilsJNI {
13 public:
14 static void SetBrowserStartupIsComplete() {
15 AfterStartupTaskUtils::SetBrowserStartupIsComplete();
16 }
17};
18
19} // android
20
Aiden Bennerc99e9052018-11-30 20:50:5021static void JNI_AfterStartupTaskUtils_SetStartupComplete(JNIEnv* env) {
michaeln68bf4a8e2015-08-11 01:37:3122 android::AfterStartupTaskUtilsJNI::SetBrowserStartupIsComplete();
23}