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

Side by Side Diff: content/browser/android/content_view_render_view.cc

Issue 832953002: Cleanup: Update the path to gfx size headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "content/browser/android/content_view_render_view.h" 5 #include "content/browser/android/content_view_render_view.h"
6 6
7 #include "base/android/jni_android.h" 7 #include "base/android/jni_android.h"
8 #include "base/android/jni_string.h" 8 #include "base/android/jni_string.h"
9 #include "base/android/scoped_java_ref.h" 9 #include "base/android/scoped_java_ref.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/lazy_instance.h" 11 #include "base/lazy_instance.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/message_loop/message_loop.h" 13 #include "base/message_loop/message_loop.h"
14 #include "cc/layers/layer.h" 14 #include "cc/layers/layer.h"
15 #include "content/browser/android/content_view_core_impl.h" 15 #include "content/browser/android/content_view_core_impl.h"
16 #include "content/public/browser/android/compositor.h" 16 #include "content/public/browser/android/compositor.h"
17 #include "content/public/browser/android/content_view_layer_renderer.h" 17 #include "content/public/browser/android/content_view_layer_renderer.h"
18 #include "content/public/browser/android/layer_tree_build_helper.h" 18 #include "content/public/browser/android/layer_tree_build_helper.h"
19 #include "jni/ContentViewRenderView_jni.h" 19 #include "jni/ContentViewRenderView_jni.h"
20 #include "ui/gfx/android/java_bitmap.h" 20 #include "ui/gfx/android/java_bitmap.h"
21 #include "ui/gfx/size.h" 21 #include "ui/gfx/geometry/size.h"
22 22
23 #include <android/bitmap.h> 23 #include <android/bitmap.h>
24 #include <android/native_window_jni.h> 24 #include <android/native_window_jni.h>
25 25
26 using base::android::ScopedJavaLocalRef; 26 using base::android::ScopedJavaLocalRef;
27 27
28 namespace content { 28 namespace content {
29 29
30 namespace { 30 namespace {
31 31
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 compositor_.reset(Compositor::Create(this, root_window_)); 144 compositor_.reset(Compositor::Create(this, root_window_));
145 } 145 }
146 146
147 jlong ContentViewRenderView::GetUIResourceProvider(JNIEnv* env, 147 jlong ContentViewRenderView::GetUIResourceProvider(JNIEnv* env,
148 jobject obj) { 148 jobject obj) {
149 if (!compositor_) 149 if (!compositor_)
150 return 0; 150 return 0;
151 return reinterpret_cast<intptr_t>(&compositor_->GetUIResourceProvider()); 151 return reinterpret_cast<intptr_t>(&compositor_->GetUIResourceProvider());
152 } 152 }
153 } // namespace content 153 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/android/content_view_core_impl.cc ('k') | content/browser/compositor/buffer_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698