OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DOMView
(Results
1 - 15
of
15
) sorted by null
/external/chromium/chrome/browser/ui/views/
dom_view.cc
14
DOMView
::
DOMView
() : tab_contents_(NULL), initialized_(false) {
18
DOMView
::~
DOMView
() {
23
bool
DOMView
::Init(Profile* profile, SiteInstance* instance) {
36
TabContents*
DOMView
::CreateTabContents(Profile* profile,
41
void
DOMView
::LoadURL(const GURL& url) {
46
bool
DOMView
::SkipDefaultKeyEventProcessing(const views::KeyEvent& e) {
53
void
DOMView
::OnFocus() {
57
void
DOMView
::ViewHierarchyChanged(bool is_add, views::View* parent
[
all
...]
dom_view.h
5
//
DOMView
is a ChromeView that displays the content of a web DOM.
21
class
DOMView
: public views::NativeViewHost {
23
DOMView
();
24
virtual ~
DOMView
();
61
DISALLOW_COPY_AND_ASSIGN(
DOMView
);
textfield_views.h
15
class TextfieldViews : public
DOMView
{
dom_view_browsertest.cc
30
DOMView
* dom_view = new
DOMView
();
48
DOMView
* dom_view = new
DOMView
();
70
DOMView
* dom_view = new
DOMView
();
textfield_views.cc
12
TextfieldViews::TextfieldViews() :
DOMView
() {}
html_dialog_view.cc
43
:
DOMView
(),
215
// Now Init the
DOMView
. This view runs in its own process to render the html.
216
DOMView
::Init(profile(), NULL);
228
DOMView
::LoadURL(GetDialogContentURL());
keyboard_overlay_dialog_view.cc
52
DOMView
::Init(profile(), NULL);
86
DOMView
::LoadURL(GetDialogContentURL());
html_dialog_view.h
36
: public
DOMView
,
44
// Initializes the contents of the dialog (the
DOMView
and the callbacks).
/external/chromium/chrome/browser/ui/touch/frame/
keyboard_container_view.h
11
class
DOMView
;
31
DOMView
* dom_view_;
keyboard_container_view.cc
28
: dom_view_(new
DOMView
) {
/external/chromium/chrome/browser/chromeos/login/
eula_view.h
27
class
DOMView
;
111
// Loads specified URL to the specified
DOMView
and updates specified
113
void LoadEulaView(
DOMView
* eula_view,
127
DOMView
* google_eula_view_;
131
DOMView
* oem_eula_view_;
background_view.h
24
class
DOMView
;
55
// it creates a
DOMView
background area that renders a webpage.
180
//
DOMView
for rendering a webpage as a background.
181
DOMView
* background_area_;
web_page_view.h
66
class WebPageDomView : public
DOMView
{
79
// Overriden from
DOMView
:
eula_view.cc
375
google_eula_view_ = new
DOMView
();
406
oem_eula_view_ = new
DOMView
();
517
DOMView
* eula_view,
546
void EulaView::LoadEulaView(
DOMView
* eula_view,
background_view.cc
143
background_area_ = new
DOMView
();
Completed in 731 milliseconds