blob: d79c012379ea96d6e3eaf77aef0347d912403e80 (
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
|
// Copyright (c) 2006-2008 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.
// DOMView is a ChromeView that displays the content of a web DOM.
// It should be used with data: URLs.
#ifndef CHROME_BROWSER_VIEWS_DOM_VIEW_H_
#define CHROME_BROWSER_VIEWS_DOM_VIEW_H_
#include "chrome/views/hwnd_view.h"
#include "googleurl/src/gurl.h"
class DOMUIHost;
class Profile;
class SiteInstance;
class DOMView : public views::HWNDView {
public:
// Construct a DOMView to display the given data: URL.
explicit DOMView(const GURL& contents);
virtual ~DOMView();
// Initialize the view, causing it to load its contents. This should be
// called once the view has been added to a container.
// If |instance| is not null, then the view will be loaded in the same
// process as the given instance.
bool Init(Profile* profile, SiteInstance* instance);
protected:
virtual bool CanProcessTabKeyEvents() { return true; }
DOMUIHost* host_;
private:
GURL contents_;
bool initialized_;
DISALLOW_COPY_AND_ASSIGN(DOMView);
};
#endif // CHROME_BROWSER_VIEWS_DOM_VIEW_H_
|