aw_resource.h 606 B

123456789101112131415161718192021
  1. // Copyright (c) 2012 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef ANDROID_WEBVIEW_COMMON_AW_RESOURCE_H_
  5. #define ANDROID_WEBVIEW_COMMON_AW_RESOURCE_H_
  6. #include <string>
  7. #include <vector>
  8. // android_webview implements these with a JNI call to the
  9. // AwResource Java class.
  10. namespace android_webview {
  11. namespace AwResource {
  12. std::vector<std::string> GetConfigKeySystemUuidMapping();
  13. } // namespace AwResource
  14. } // namsespace android_webview
  15. #endif // ANDROID_WEBVIEW_COMMON_AW_RESOURCE_H_