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

Unified Diff: blimp/client/public/contents/blimp_contents.h

Issue 2320923002: Add a full Blimp integration test. (Closed)
Patch Set: Fix build break with chrome embedder Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/client/public/blimp_client_context.h ('k') | blimp/client/public/contents/blimp_contents_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/public/contents/blimp_contents.h
diff --git a/blimp/client/public/contents/blimp_contents.h b/blimp/client/public/contents/blimp_contents.h
index 9d949d3a5947491beffe87e5be3d0abed2d66b48..f9b93a8b950721baa421bb118fb973abf9d7c4d9 100644
--- a/blimp/client/public/contents/blimp_contents.h
+++ b/blimp/client/public/contents/blimp_contents.h
@@ -8,16 +8,20 @@
#include "base/macros.h"
#include "base/supports_user_data.h"
#include "ui/gfx/native_widget_types.h"
-#include "url/gurl.h"
#if defined(OS_ANDROID)
#include "base/android/scoped_java_ref.h"
#endif
+namespace cc {
+class Layer;
+} // namespace cc
+
namespace blimp {
namespace client {
class BlimpContentsObserver;
+class BlimpContentsView;
class BlimpNavigationController;
// BlimpContents is the core class in blimp client which is responsible for
@@ -36,8 +40,8 @@ class BlimpContents : public base::SupportsUserData {
virtual void AddObserver(BlimpContentsObserver* observer) = 0;
virtual void RemoveObserver(BlimpContentsObserver* observer) = 0;
- // Returns the native view that holds the contents of this tab.
- virtual gfx::NativeView GetNativeView() = 0;
+ // Returns the view that holds the contents of this tab.
+ virtual BlimpContentsView* GetView() = 0;
// Will cause this BlimpContents and the remote contents to show and start or
// stop rendering content respectively.
« no previous file with comments | « blimp/client/public/blimp_client_context.h ('k') | blimp/client/public/contents/blimp_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698