| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_QUOTA_MANAGER_BRIDGE_IMPL_H_ | 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_QUOTA_MANAGER_BRIDGE_IMPL_H_ |
| 6 #define ANDROID_WEBVIEW_NATIVE_AW_QUOTA_MANAGER_BRIDGE_IMPL_H_ | 6 #define ANDROID_WEBVIEW_NATIVE_AW_QUOTA_MANAGER_BRIDGE_IMPL_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "android_webview/browser/aw_quota_manager_bridge.h" | 12 #include "android_webview/browser/aw_quota_manager_bridge.h" |
| 13 #include "base/android/jni_helper.h" | 13 #include "base/android/jni_weak_ref.h" |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/callback.h" | 15 #include "base/callback.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 18 #include "base/strings/string16.h" | 18 #include "base/strings/string16.h" |
| 19 | 19 |
| 20 class GURL; | 20 class GURL; |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| 23 class StoragePartition; | 23 class StoragePartition; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 JavaObjectWeakGlobalRef java_ref_; | 82 JavaObjectWeakGlobalRef java_ref_; |
| 83 | 83 |
| 84 DISALLOW_COPY_AND_ASSIGN(AwQuotaManagerBridgeImpl); | 84 DISALLOW_COPY_AND_ASSIGN(AwQuotaManagerBridgeImpl); |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 bool RegisterAwQuotaManagerBridge(JNIEnv* env); | 87 bool RegisterAwQuotaManagerBridge(JNIEnv* env); |
| 88 | 88 |
| 89 } // namespace android_webview | 89 } // namespace android_webview |
| 90 | 90 |
| 91 #endif // ANDROID_WEBVIEW_NATIVE_AW_QUOTA_MANAGER_BRIDGE_IMPL_H_ | 91 #endif // ANDROID_WEBVIEW_NATIVE_AW_QUOTA_MANAGER_BRIDGE_IMPL_H_ |
| OLD | NEW |