blob: 2d815d7631a5cd259cbe4d2ee4047bea674567fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_
#define CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_
#include "base/basictypes.h"
#include "gfx/native_widget_types.h"
#include "gfx/size.h"
#include "third_party/skia/include/core/SkBitmap.h"
class Browser;
class ExtensionHost;
class RenderViewHost;
class RenderWidgetHostViewGtk;
class SkBitmap;
class ExtensionViewGtk {
public:
ExtensionViewGtk(ExtensionHost* extension_host, Browser* browser);
void Init();
gfx::NativeView native_view();
Browser* browser() const { return browser_; }
void SetBackground(const SkBitmap& background);
// Method for the ExtensionHost to notify us about the correct size for
// extension contents.
void UpdatePreferredSize(const gfx::Size& new_size);
// Method for the ExtensionHost to notify us when the RenderViewHost has a
// connection.
void RenderViewCreated();
RenderViewHost* render_view_host() const;
// Declared here for testing.
static const int kMinWidth;
static const int kMinHeight;
static const int kMaxWidth;
static const int kMaxHeight;
private:
void CreateWidgetHostView();
Browser* browser_;
ExtensionHost* extension_host_;
RenderWidgetHostViewGtk* render_widget_host_view_;
// The background the view should have once it is initialized. This is set
// when the view has a custom background, but hasn't been initialized yet.
SkBitmap pending_background_;
DISALLOW_COPY_AND_ASSIGN(ExtensionViewGtk);
};
#endif // CHROME_BROWSER_GTK_EXTENSION_VIEW_GTK_H_
|