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

Side by Side Diff: content/public/browser/android/ui_resource_android.h

Issue 731133002: Upstream ResourceManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Apply David's comments Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
(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"
jdduke (slow) 2014/11/19 00:09:16 Lots of unused headers here, can we get rid of the
Jaekyun Seok (inactive) 2014/11/19 02:41:38 Done.
Jaekyun Seok (inactive) 2014/11/19 02:41:38 Done.
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698