blob: e5c04179d7f60c6daee0359cf497285d190e9d7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (c) 2012 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.
#ifndef ANDROID_WEBVIEW_COMMON_AW_RESOURCE_H_
#define ANDROID_WEBVIEW_COMMON_AW_RESOURCE_H_
#include <string>
// android_webview implements these with a JNI call to the
// AwResource Java class.
namespace android_webview {
namespace AwResource {
std::string GetLoadErrorPageContent();
std::string GetNoDomainPageContent();
std::vector<std::string> GetConfigKeySystemUuidMapping();
} // namespace AwResource
} // namsespace android_webview
#endif // ANDROID_WEBVIEW_COMMON_AW_RESOURCE_H_
|