OLD | NEW |
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 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_CONTENT_VIEW_CORE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_CONTENT_VIEW_CORE_H_ |
6 #define CONTENT_PUBLIC_BROWSER_ANDROID_CONTENT_VIEW_CORE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_ANDROID_CONTENT_VIEW_CORE_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 | 9 |
10 #include "base/android/scoped_java_ref.h" | 10 #include "base/android/scoped_java_ref.h" |
(...skipping 29 matching lines...) Expand all Loading... |
40 class CONTENT_EXPORT ContentViewCore { | 40 class CONTENT_EXPORT ContentViewCore { |
41 public: | 41 public: |
42 // Returns the existing ContentViewCore for |web_contents|, or NULL. | 42 // Returns the existing ContentViewCore for |web_contents|, or NULL. |
43 static ContentViewCore* FromWebContents(WebContents* web_contents); | 43 static ContentViewCore* FromWebContents(WebContents* web_contents); |
44 static ContentViewCore* GetNativeContentViewCore(JNIEnv* env, jobject obj); | 44 static ContentViewCore* GetNativeContentViewCore(JNIEnv* env, jobject obj); |
45 | 45 |
46 virtual WebContents* GetWebContents() const = 0; | 46 virtual WebContents* GetWebContents() const = 0; |
47 virtual base::android::ScopedJavaLocalRef<jobject> GetJavaObject() = 0; | 47 virtual base::android::ScopedJavaLocalRef<jobject> GetJavaObject() = 0; |
48 virtual ui::ViewAndroid* GetViewAndroid() const = 0; | 48 virtual ui::ViewAndroid* GetViewAndroid() const = 0; |
49 virtual ui::WindowAndroid* GetWindowAndroid() const = 0; | 49 virtual ui::WindowAndroid* GetWindowAndroid() const = 0; |
50 virtual scoped_refptr<cc::Layer> GetLayer() const = 0; | 50 virtual const scoped_refptr<cc::Layer>& GetLayer() const = 0; |
51 virtual void ShowPastePopup(int x, int y) = 0; | 51 virtual void ShowPastePopup(int x, int y) = 0; |
52 | 52 |
53 // Request a scaled content readback. The result is passed through the | 53 // Request a scaled content readback. The result is passed through the |
54 // callback. The boolean parameter indicates whether the readback was a | 54 // callback. The boolean parameter indicates whether the readback was a |
55 // success or not. The content is passed through the SkBitmap parameter. | 55 // success or not. The content is passed through the SkBitmap parameter. |
56 virtual void GetScaledContentBitmap( | 56 virtual void GetScaledContentBitmap( |
57 float scale, | 57 float scale, |
58 SkColorType color_type, | 58 SkColorType color_type, |
59 gfx::Rect src_rect, | 59 gfx::Rect src_rect, |
60 const base::Callback<void(bool, const SkBitmap&)>& result_callback) = 0; | 60 const base::Callback<void(bool, const SkBitmap&)>& result_callback) = 0; |
(...skipping 13 matching lines...) Expand all Loading... |
74 int start_offset, | 74 int start_offset, |
75 int end_offset)>& callback) = 0; | 75 int end_offset)>& callback) = 0; |
76 | 76 |
77 protected: | 77 protected: |
78 virtual ~ContentViewCore() {}; | 78 virtual ~ContentViewCore() {}; |
79 }; | 79 }; |
80 | 80 |
81 }; // namespace content | 81 }; // namespace content |
82 | 82 |
83 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_CONTENT_VIEW_CORE_H_ | 83 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_CONTENT_VIEW_CORE_H_ |
OLD | NEW |