Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Unified Diff: android_webview/browser/aw_resource.cc

Issue 2886283005: [WebView] Merge AwMetricsServiceClient and move few files to new place (Closed)
Patch Set: remove recursive include Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/browser/aw_resource.cc
diff --git a/android_webview/browser/aw_resource.cc b/android_webview/browser/aw_resource.cc
deleted file mode 100644
index 6400a1a456d9bf6536b558d6287eb521bcdf7f39..0000000000000000000000000000000000000000
--- a/android_webview/browser/aw_resource.cc
+++ /dev/null
@@ -1,28 +0,0 @@
-// 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.
-
-#include "android_webview/common/aw_resource.h"
-
-#include "base/android/jni_array.h"
-#include "base/android/jni_string.h"
-#include "base/android/scoped_java_ref.h"
-#include "jni/AwResource_jni.h"
-
-using base::android::ScopedJavaLocalRef;
-
-namespace android_webview {
-namespace AwResource {
-
-std::vector<std::string> GetConfigKeySystemUuidMapping() {
- JNIEnv* env = base::android::AttachCurrentThread();
- std::vector<std::string> key_system_uuid_mappings;
- ScopedJavaLocalRef<jobjectArray> mappings =
- Java_AwResource_getConfigKeySystemUuidMapping(env);
- base::android::AppendJavaStringArrayToStringVector(env, mappings.obj(),
- &key_system_uuid_mappings);
- return key_system_uuid_mappings;
-}
-
-} // namespace AwResource
-} // namespace android_webview
« no previous file with comments | « android_webview/browser/aw_metrics_service_client_impl.cc ('k') | android_webview/browser/net/init_native_callback.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698