Chromium Code Reviews| Index: android_webview/test/embeddedtestserver/custom_handlers.h |
| diff --git a/android_webview/test/embeddedtestserver/custom_handlers.h b/android_webview/test/embeddedtestserver/custom_handlers.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..594a6923b94a6a3a608f37f593aba06f68323bf4 |
| --- /dev/null |
| +++ b/android_webview/test/embeddedtestserver/custom_handlers.h |
| @@ -0,0 +1,18 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
|
jbudorick
2017/03/13 23:32:54
As these two files are the native side of AwEmbedd
shenghuazhang
2017/03/17 01:07:15
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef ANDROID_WEBVIEW_TEST_EMBEDDEDTESTSERVER_CUSTOM_HANDLERS_H_ |
| +#define ANDROID_WEBVIEW_TEST_EMBEDDEDTESTSERVER_CUSTOM_HANDLERS_H_ |
| + |
| +#include <jni.h> |
| + |
| +namespace android_webview { |
| +namespace test { |
| + |
| +bool RegisterCustomHandlers(JNIEnv* env); |
| + |
| +} // namespace test |
| +} // namespace android_webview |
| + |
| +#endif // ANDROID_WEBVIEW_TEST_EMBEDDEDTESTSERVER_CUSTOM_HANDLERS_H_ |