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

Side by Side Diff: chrome/browser/gtk/extension_view_gtk.h

Issue 159527: Create render view for extensions on Linux. (Closed)
Patch Set: Created 11 years, 4 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
« no previous file with comments | « chrome/browser/gtk/extension_shelf_gtk.cc ('k') | chrome/browser/gtk/extension_view_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_
6 #define CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_
7
8 #include "base/basictypes.h"
9 #include "base/gfx/native_widget_types.h"
10
11 class ExtensionHost;
12 class RenderViewHost;
13 class RenderWidgetHostViewGtk;
14
15 class ExtensionViewGtk {
16 public:
17 explicit ExtensionViewGtk(ExtensionHost* extension_host);
18
19 gfx::NativeView native_view();
20
21 private:
22 RenderViewHost* render_view_host() const;
23
24 void CreateWidgetHostView();
25
26 ExtensionHost* extension_host_;
27
28 RenderWidgetHostViewGtk* render_widget_host_view_;
29
30 DISALLOW_COPY_AND_ASSIGN(ExtensionViewGtk);
31 };
32
33 #endif // CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_
OLDNEW
« no previous file with comments | « chrome/browser/gtk/extension_shelf_gtk.cc ('k') | chrome/browser/gtk/extension_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698