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

Unified Diff: content/browser/android/ui_resource_provider_impl.cc

Issue 377013002: android: Use UIResource for overscroll glow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments. moved resource loading to its own class. Created 6 years, 5 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: content/browser/android/ui_resource_provider_impl.cc
diff --git a/content/browser/android/ui_resource_provider_impl.cc b/content/browser/android/ui_resource_provider_impl.cc
index f97975cc81e06429697d3e2f03fdedace52f1042..4afce5064de0aef845b873b22fb8f40b3a028441 100644
--- a/content/browser/android/ui_resource_provider_impl.cc
+++ b/content/browser/android/ui_resource_provider_impl.cc
@@ -6,7 +6,7 @@
#include "cc/resources/ui_resource_client.h"
#include "cc/trees/layer_tree_host.h"
-#include "content/public/browser/android/ui_resource_client_android.h"
+#include "ui/base/android/ui_resource_client_android.h"
namespace content {
@@ -35,7 +35,7 @@ void UIResourceProviderImpl::UIResourcesAreInvalid() {
}
cc::UIResourceId UIResourceProviderImpl::CreateUIResource(
- UIResourceClientAndroid* client) {
+ ui::UIResourceClientAndroid* client) {
if (!host_)
return 0;
cc::UIResourceId id = host_->CreateUIResource(client);

Powered by Google App Engine
This is Rietveld 408576698