[M120][Tizen][Onscreen] Fix build errors for TV profile
[platform/framework/web/chromium-efl.git] / chrome / browser / after_startup_task_utils_android.cc
1 // Copyright 2015 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/after_startup_task_utils.h"
6 #include "chrome/browser/util/jni_headers/AfterStartupTaskUtils_jni.h"
7
8 using base::android::JavaParamRef;
9
10 namespace android {
11
12 class AfterStartupTaskUtilsJNI {
13  public:
14   static void SetBrowserStartupIsComplete() {
15     AfterStartupTaskUtils::SetBrowserStartupIsComplete();
16   }
17 };
18
19 }  // android
20
21 static void JNI_AfterStartupTaskUtils_SetStartupComplete(JNIEnv* env) {
22   android::AfterStartupTaskUtilsJNI::SetBrowserStartupIsComplete();
23 }