blob: b7ff2f965d1209d6ce2dfd59e5f324b4ea777e5a [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"
Andrew Grieveecb885bb2024-05-29 18:14:196
7// Must come after all headers that specialize FromJniType() / ToJniType().
Michael Thiessen8b2f7cb2021-08-11 21:56:138#include "chrome/browser/util/jni_headers/AfterStartupTaskUtils_jni.h"
michaeln68bf4a8e2015-08-11 01:37:319
Sam Maier7fe12c12024-01-26 19:22:4310using jni_zero::JavaParamRef;
torne86560112016-08-04 15:59:0411
michaeln68bf4a8e2015-08-11 01:37:3112namespace android {
13
14class AfterStartupTaskUtilsJNI {
15 public:
16 static void SetBrowserStartupIsComplete() {
17 AfterStartupTaskUtils::SetBrowserStartupIsComplete();
18 }
19};
20
21} // android
22
Aiden Bennerc99e9052018-11-30 20:50:5023static void JNI_AfterStartupTaskUtils_SetStartupComplete(JNIEnv* env) {
michaeln68bf4a8e2015-08-11 01:37:3124 android::AfterStartupTaskUtilsJNI::SetBrowserStartupIsComplete();
25}