mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
21 lines
547 B
C++
21 lines
547 B
C++
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "net/test/android/net_test_jni_onload.h"
|
|
|
|
#include "base/android/base_jni_onload.h"
|
|
#include "base/android/jni_android.h"
|
|
#include "base/bind.h"
|
|
#include "net/test/embedded_test_server/android/embedded_test_server_android.h"
|
|
|
|
namespace net {
|
|
namespace test {
|
|
|
|
bool OnJNIOnLoadInit() {
|
|
return base::android::OnJNIOnLoadInit();
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace net
|