/external/chromium_org/chrome/browser/chromeos/first_run/ |
first_run_view.cc | 20 : web_view_(NULL) { 24 web_view_ = new views::WebView(context); 25 AddChildView(web_view_); 26 web_view_->LoadInitialURL(GURL(chrome::kChromeUIFirstRunURL)); 28 content::WebContents* web_contents = web_view_->web_contents(); 42 web_view_->web_contents()->GetWebUI()->GetController())->get_actor(); 46 web_view_->SetBoundsRect(bounds()); 50 web_view_->RequestFocus(); 54 return web_view_->web_contents();
|
first_run_view.h | 46 views::WebView* web_view_; member in class:chromeos::FirstRunView
|
/external/chromium_org/chrome/browser/apps/ |
OWNERS | 8 per-file web_view_*.cc=fsamuel@chromium.org 9 per-file web_view_*.cc=lazyboy@chromium.org
|
/external/chromium_org/chrome/test/chromedriver/ |
session_unittest.cc | 19 MockChrome() : web_view_("1") {} 24 if (id == web_view_.GetId()) { 25 *web_view = &web_view_; 32 StubWebView web_view_; member in class:__anon7019::MockChrome
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
automation_extension.cc | 13 : web_view_(web_view.Pass()) {} 20 Status status = web_view_->CallAsyncFunction( 71 Status status = web_view_->CallAsyncFunction(std::string(), 100 return web_view_->CallAsyncFunction(std::string(),
|
automation_extension.h | 49 scoped_ptr<WebView> web_view_; member in class:AutomationExtension
|
/external/chromium_org/components/plugins/renderer/ |
webview_plugin.cc | 46 web_view_ = WebView::create(this); 47 web_view_->initializeMainFrame(this); 62 WebViewPlugin::~WebViewPlugin() { web_view_->close(); } 128 web_view_->layout(); 129 web_view_->paint(canvas, paint_rect); 142 web_view_->setFixedLayoutSize(newSize); 143 web_view_->resize(newSize); 165 bool handled = web_view_->handleInputEvent(event); 204 web_view_->dragSourceSystemDragEnded();
|
webview_plugin.h | 61 blink::WebView* web_view() { return web_view_; } 145 blink::WebView* web_view_; member in class:WebViewPlugin
|
/external/chromium_org/chrome/browser/chromeos/login/ |
simple_web_view_dialog.cc | 127 web_view_(NULL), 144 web_view_ = web_view_container_.get(); 145 web_view_->set_owned_by_client(); 146 web_view_->GetWebContents()->SetDelegate(this); 147 web_view_->LoadInitialURL(url); 149 WebContents* web_contents = web_view_->GetWebContents(); 226 UpdateReload(web_view_->web_contents()->IsLoading(), true); 244 return web_view_; 317 return web_view_->web_contents(); 323 WebContents* web_contents = web_view_->web_contents() [all...] |
simple_web_view_dialog.h | 113 views::WebView* web_view_; member in class:chromeos::SimpleWebViewDialog 115 // Contains |web_view_| while it isn't owned by the view.
|
/external/chromium_org/ui/views/controls/webview/ |
web_dialog_view.cc | 51 web_view_(new views::WebView(context)), 56 web_view_->set_allow_accelerators(true); 57 AddChildView(web_view_); 58 set_contents_view(web_view_); 68 return web_view_->web_contents(); 121 web_view_-> 167 return web_view_; 354 content::WebContents* web_contents = web_view_->GetWebContents(); 364 web_view_->LoadInitialURL(GetDialogContentURL());
|
web_dialog_view.h | 135 views::WebView* web_view_; member in class:views::WebDialogView
|
/external/chromium_org/chrome/browser/ui/views/ |
user_manager_view.cc | 60 : web_view_(new views::WebView(profile)) { 62 AddChildView(web_view_); 135 instance_->web_view_->LoadInitialURL(GURL(page)); 136 instance_->web_view_->RequestFocus();
|
user_manager_view.h | 49 views::WebView* web_view_; member in class:UserManagerView
|
/external/chromium_org/chrome/browser/ui/views/apps/ |
native_app_window_views.cc | 245 : web_view_(NULL), 279 web_view_->SetWebContents(NULL); 672 DCHECK(web_view_); 673 gfx::Size sz = web_view_->size(); 733 return web_view_; 856 if (child->Contains(web_view_->web_contents()->GetView()->GetNativeView())) { 907 DCHECK(web_view_); 908 web_view_->SetBounds(0, 0, width(), height()); 915 web_view_ = new views::WebView(NULL); 916 AddChildView(web_view_); [all...] |
native_app_window_views.h | 205 views::WebView* web_view_; member in class:NativeAppWindowViews
|
/external/chromium_org/content/shell/browser/ |
shell_views.cc | 94 web_view_ = new views::WebView(web_contents->GetBrowserContext()); 95 web_view_->SetWebContents(web_contents); 96 web_view_->SetPreferredSize(size); 98 contents_view_->AddChildView(web_view_); 288 views::WebView* web_view_; member in class:content::__anon8286::ShellWindowDelegateView
|
/external/chromium_org/chrome/browser/ui/views/panels/ |
panel_view.cc | 262 web_view_(NULL), 285 web_view_ = new views::WebView(NULL); 286 AddChildView(web_view_); 512 web_view_->OnWebContentsFocused(contents); 718 web_view_->SetWebContents(contents); 722 web_view_->SetWebContents(NULL); 897 // |web_view_| might not be created yet when the window is first created. 898 if (web_view_) 899 web_view_->SetBounds(0, 0, width(), height()); [all...] |
panel_view.h | 198 views::WebView* web_view_; member in class:PanelView
|
/external/chromium_org/content/renderer/gpu/ |
gpu_benchmarking_extension.cc | 185 web_view_(NULL), 194 web_view_ = web_frame_->view(); 195 if (!web_view_) { 200 render_view_impl_ = RenderViewImpl::FromWebView(web_view_); 203 web_view_ = NULL; 213 web_view_ = NULL; 226 DCHECK(web_view_ != NULL); 227 return web_view_; 240 WebView* web_view_; member in class:content::__anon8147::GpuBenchmarkingContext
|
/external/chromium_org/components/autofill/content/renderer/ |
password_autofill_agent.h | 154 blink::WebView* web_view_; member in class:autofill::PasswordAutofillAgent
|
autofill_agent.h | 197 blink::WebView* web_view_; member in class:autofill::AutofillAgent
|
autofill_agent.cc | 136 web_view_(render_view->GetWebView()), 581 GetScaledBoundingBox(web_view_->pageScaleFactor(), &element_);
|
password_autofill_agent.cc | 192 web_view_(render_view->GetWebView()), 611 float scale = web_view_->pageScaleFactor();
|