OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 |
| 5 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_UI_RESOURCE_ANDROID_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_ANDROID_UI_RESOURCE_ANDROID_H_ |
| 7 |
| 8 #include <jni.h> |
| 9 |
| 10 #include "base/basictypes.h" |
| 11 #include "cc/resources/ui_resource_bitmap.h" |
| 12 #include "content/common/content_export.h" |
| 13 #include "content/public/browser/android/ui_resource_client_android.h" |
| 14 #include "third_party/skia/include/core/SkBitmap.h" |
| 15 #include "ui/gfx/android/java_bitmap.h" |
| 16 |
| 17 namespace content { |
| 18 |
| 19 class CONTENT_EXPORT UIResourceAndroid : public UIResourceClientAndroid { |
| 20 public: |
| 21 virtual cc::UIResourceId id() = 0; |
| 22 }; |
| 23 |
| 24 } // namespace content |
| 25 |
| 26 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_UI_RESOURCE_ANDROID_H_ |
OLD | NEW |