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