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

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

Issue 406023002: Restructuring NavigationController functionalities from ContentViewCore to NavigationController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch with findbugs_known_bugs.txt changes. Created 6 years, 3 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 #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
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 scoped_refptr<cc::Layer> GetLayer() const = 0;
51 virtual void LoadUrl(NavigationController::LoadURLParams& params) = 0;
52 virtual void ShowPastePopup(int x, int y) = 0; 51 virtual void ShowPastePopup(int x, int y) = 0;
53 52
54 // Request a scaled content readback. The result is passed through the 53 // Request a scaled content readback. The result is passed through the
55 // callback. The boolean parameter indicates whether the readback was a 54 // callback. The boolean parameter indicates whether the readback was a
56 // success or not. The content is passed through the SkBitmap parameter. 55 // success or not. The content is passed through the SkBitmap parameter.
57 virtual void GetScaledContentBitmap( 56 virtual void GetScaledContentBitmap(
58 float scale, 57 float scale,
59 SkColorType color_type, 58 SkColorType color_type,
60 gfx::Rect src_rect, 59 gfx::Rect src_rect,
61 const base::Callback<void(bool, const SkBitmap&)>& result_callback) = 0; 60 const base::Callback<void(bool, const SkBitmap&)>& result_callback) = 0;
(...skipping 14 matching lines...) Expand all
76 int start_offset, 75 int start_offset,
77 int end_offset)>& callback) = 0; 76 int end_offset)>& callback) = 0;
78 77
79 protected: 78 protected:
80 virtual ~ContentViewCore() {}; 79 virtual ~ContentViewCore() {};
81 }; 80 };
82 81
83 }; // namespace content 82 }; // namespace content
84 83
85 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_CONTENT_VIEW_CORE_H_ 84 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_CONTENT_VIEW_CORE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698