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

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

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/gtk/extension_popup_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
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_ 5 #ifndef CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_
6 #define CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_ 6 #define CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "chrome/browser/ui/gtk/extension_view_gtk.h"
10 #include "gfx/native_widget_types.h" 10 // TODO(msw): remove this file once all includes have been updated.
11 #include "gfx/size.h"
12 #include "third_party/skia/include/core/SkBitmap.h"
13
14 class Browser;
15 class ExtensionHost;
16 class RenderViewHost;
17 class RenderWidgetHostViewGtk;
18 class SkBitmap;
19
20 class ExtensionViewGtk {
21 public:
22 ExtensionViewGtk(ExtensionHost* extension_host, Browser* browser);
23
24 class Container {
25 public:
26 virtual ~Container() {}
27 virtual void OnExtensionPreferredSizeChanged(ExtensionViewGtk* view,
28 const gfx::Size& new_size) {}
29 };
30
31 void Init();
32
33 gfx::NativeView native_view();
34 Browser* browser() const { return browser_; }
35
36 void SetBackground(const SkBitmap& background);
37
38 // Sets the container for this view.
39 void SetContainer(Container* container) { container_ = container; }
40
41 // Method for the ExtensionHost to notify us about the correct size for
42 // extension contents.
43 void UpdatePreferredSize(const gfx::Size& new_size);
44
45 // Method for the ExtensionHost to notify us when the RenderViewHost has a
46 // connection.
47 void RenderViewCreated();
48
49 RenderViewHost* render_view_host() const;
50
51 private:
52 void CreateWidgetHostView();
53
54 Browser* browser_;
55
56 ExtensionHost* extension_host_;
57
58 RenderWidgetHostViewGtk* render_widget_host_view_;
59
60 // The background the view should have once it is initialized. This is set
61 // when the view has a custom background, but hasn't been initialized yet.
62 SkBitmap pending_background_;
63
64 // This view's container.
65 Container* container_;
66
67 DISALLOW_COPY_AND_ASSIGN(ExtensionViewGtk);
68 };
69 11
70 #endif // CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_ 12 #endif // CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_
OLDNEW
« no previous file with comments | « chrome/browser/gtk/extension_popup_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