HomeSort by relevance Sort by last modified time
    Searched refs:web_contents_ (Results 1 - 25 of 205) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/content/public/browser/
web_contents_observer.cc 14 : web_contents_(NULL) {
19 : web_contents_(NULL) {
23 if (web_contents_)
24 web_contents_->RemoveObserver(this);
28 return web_contents_;
32 if (web_contents == web_contents_) {
36 if (web_contents_)
37 web_contents_->RemoveObserver(this);
38 web_contents_ = static_cast<WebContentsImpl*>(web_contents);
39 if (web_contents_) {
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
synced_tab_delegate_android.cc 23 : web_contents_(NULL), tab_android_(tab_android) {}
28 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
37 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
42 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
47 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
52 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
57 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
62 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
67 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
72 return TabContentsSyncedTabDelegate::FromWebContents(web_contents_)
    [all...]
  /external/chromium_org/chrome/browser/ui/search/
search_ipc_router_policy_impl.cc 13 : web_contents_(web_contents),
18 Profile::FromBrowserContext(web_contents_->GetBrowserContext());
30 return is_active_tab && !is_incognito_ && chrome::IsInstantNTP(web_contents_);
34 return is_active_tab && !is_incognito_ && chrome::IsInstantNTP(web_contents_);
38 return !is_incognito_ && chrome::IsInstantNTP(web_contents_);
42 return !is_incognito_ && chrome::IsInstantNTP(web_contents_);
46 return !is_incognito_ && chrome::IsInstantNTP(web_contents_);
50 return !is_incognito_ && chrome::IsInstantNTP(web_contents_);
55 return is_active_tab && !is_incognito_ && chrome::IsInstantNTP(web_contents_);
59 return !is_incognito_ && chrome::IsInstantNTP(web_contents_);
    [all...]
  /external/chromium_org/chrome/browser/ui/sync/
tab_contents_synced_tab_delegate.cc 27 : web_contents_(web_contents), sync_session_id_(0) {}
32 return SessionTabHelper::FromWebContents(web_contents_)->window_id().id();
36 return SessionTabHelper::FromWebContents(web_contents_)->session_id().id();
40 return web_contents_->IsBeingDestroyed();
44 return Profile::FromBrowserContext(web_contents_->GetBrowserContext());
49 extensions::TabHelper::FromWebContents(web_contents_)->extension_app());
54 return web_contents_->GetController().GetCurrentEntryIndex();
58 return web_contents_->GetController().GetEntryCount();
62 return web_contents_->GetController().GetPendingEntryIndex();
66 return web_contents_->GetController().GetPendingEntry()
    [all...]
  /external/chromium_org/apps/shell/browser/
shell_app_window.cc 31 web_contents_.reset(WebContents::Create(create_params));
33 content::WebContentsObserver::Observe(web_contents_.get());
37 web_contents_.get());
39 extensions::SetViewType(web_contents_.get(),
45 web_contents_->GetController().LoadURLWithParams(params);
46 web_contents_->Focus();
50 return web_contents_->GetNativeView();
54 return web_contents_->GetRenderViewHost()->GetRoutingID();
67 return web_contents_.get();
72 web_contents_->GetRenderViewHost())
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
constrained_web_dialog_delegate_base.cc 33 web_contents_.reset(
37 web_contents_->SetDelegate(tab_delegate);
39 web_contents_->SetDelegate(this);
42 web_contents_->GetMutableRendererPrefs(),
44 web_contents_->GetRenderViewHost()->SyncRendererPrefs();
47 ConstrainedWebDialogUI::SetConstrainedDelegate(web_contents_.get(), this);
49 web_contents_->GetController().LoadURL(delegate->GetDialogContentURL(),
57 ignore_result(web_contents_.release());
72 CloseContents(web_contents_.get());
90 return web_contents_.get()
    [all...]
  /external/chromium_org/chrome/browser/extensions/
page_action_controller.cc 29 : web_contents_(web_contents) {
46 int tab_id = SessionID::IdForTab(web_contents_);
47 TabHelper::FromWebContents(web_contents_)->
54 web_contents_->GetBrowserContext(),
57 web_contents_->GetLastCommittedURL().spec(),
65 ExtensionRegistry::Get(web_contents_->GetBrowserContext())
67 int tab_id = SessionID::IdForTab(web_contents_);
89 LocationBarController::NotifyChange(web_contents_);
93 return Profile::FromBrowserContext(web_contents_->GetBrowserContext());
location_bar_controller.cc 22 web_contents_(web_contents),
23 active_script_controller_(new ActiveScriptController(web_contents_)),
24 page_action_controller_(new PageActionController(web_contents_)),
27 ExtensionRegistry::Get(web_contents_->GetBrowserContext()));
35 ExtensionRegistry::Get(web_contents_->GetBrowserContext())
58 ExtensionRegistry::Get(web_contents_->GetBrowserContext())
  /external/chromium_org/chrome/browser/ui/search_engines/
template_url_fetcher_ui_callbacks.cc 22 web_contents_(web_contents) {
25 content::Source<WebContents>(web_contents_));
47 DCHECK(source == content::Source<WebContents>(web_contents_));
49 web_contents_ = NULL;
  /external/chromium_org/components/dom_distiller/content/
distiller_page_web_contents.cc 25 : web_contents_(web_contents.Pass()) {
26 DCHECK(web_contents_);
33 return web_contents_.Pass();
59 web_contents_ = optional_web_contents_handle->GetWebContents().Pass();
73 if (web_contents_ && web_contents_->GetLastCommittedURL() == url) {
75 WebContentsMainFrameObserver::FromWebContents(web_contents_.get());
85 content::WebContentsObserver::Observe(web_contents_.get());
101 web_contents_.reset(content::WebContents::Create(create_params));
102 DCHECK(web_contents_.get())
    [all...]
web_contents_main_frame_observer.cc 21 web_contents_(web_contents) {
32 if (web_contents_ &&
33 frame_id == web_contents_->GetMainFrame()->GetRoutingID()) {
58 web_contents_ = NULL;
  /external/chromium_org/content/shell/browser/
shell_web_contents_view_delegate_win.cc 66 : web_contents_(web_contents) {
95 web_contents_->GetController().CanGoBack());
101 web_contents_->GetController().CanGoForward());
177 ClientToScreen(web_contents_->GetNativeView(), &point);
184 web_contents_->GetContentNativeView(),
195 web_contents_->Cut();
198 web_contents_->Copy();
201 web_contents_->Paste();
204 web_contents_->Delete();
217 web_contents_->GetController().GoToOffset(-1)
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
launcher_favicon_loader.h 43 return web_contents_;
54 content::WebContents* web_contents_; member in class:LauncherFaviconLoader
  /external/chromium_org/chrome/browser/chromeos/login/test/
js_checker.cc 22 JSChecker::JSChecker() : web_contents_(NULL) {}
25 : web_contents_(web_contents) {
29 CHECK(web_contents_);
30 ASSERT_TRUE(content::ExecuteScript(web_contents_, expression));
78 CHECK(web_contents_);
79 ASSERT_TRUE(content::ExecuteScriptAndExtractBool(web_contents_,
85 CHECK(web_contents_);
86 ASSERT_TRUE(content::ExecuteScriptAndExtractInt(web_contents_,
93 CHECK(web_contents_);
94 ASSERT_TRUE(content::ExecuteScriptAndExtractString(web_contents_,
    [all...]
  /external/chromium_org/chrome/browser/google/
google_url_tracker_navigation_helper_impl.cc 19 web_contents_(web_contents) {
23 web_contents_ = NULL;
30 &web_contents_->GetController());
43 &web_contents_->GetController());
52 content::Source<content::WebContents>(web_contents_);
68 content::Source<content::WebContents>(web_contents_));
77 web_contents_->OpenURL(content::OpenURLParams(
89 DCHECK_EQ(web_contents_, controller->GetWebContents());
94 InfoBarService::FromWebContents(web_contents_);
104 DCHECK_EQ(web_contents_,
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
panel_host.cc 54 web_contents_.reset(content::WebContents::Create(create_params));
55 extensions::SetViewType(web_contents_.get(), extensions::VIEW_TYPE_PANEL);
56 web_contents_->SetDelegate(this);
57 content::WebContentsObserver::Observe(web_contents_.get());
61 SessionTabHelper::CreateForWebContents(web_contents_.get());
62 SessionTabHelper::FromWebContents(web_contents_.get())->SetWindowID(
65 FaviconTabHelper::CreateForWebContents(web_contents_.get());
66 PrefsTabHelper::CreateForWebContents(web_contents_.get());
68 web_contents_.get());
70 web_contents_->GetController().LoadURL
    [all...]
  /external/chromium_org/apps/
app_window_contents.cc 37 web_contents_.reset(
41 content::WebContentsObserver::Observe(web_contents_.get());
42 web_contents_->GetMutableRendererPrefs()->
44 web_contents_->GetRenderViewHost()->SyncRendererPrefs();
52 if (web_contents_->GetRenderViewHost()->GetProcess()->GetID() ==
54 SuspendRenderViewHost(web_contents_->GetRenderViewHost());
57 << web_contents_->GetRenderViewHost()->GetProcess()->GetID()
71 web_contents_->GetController().LoadURL(
84 content::RenderViewHost* rvh = web_contents_->GetRenderViewHost();
94 content::RenderViewHost* rvh = web_contents_->GetRenderViewHost()
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_view_android.cc 30 : web_contents_(web_contents),
42 web_contents_->GetRenderWidgetHostView());
46 if (web_contents_->ShowingInterstitialPage()) {
49 web_contents_->GetInterstitialPage())->
80 RenderWidgetHostView* rwhv = web_contents_->GetRenderWidgetHostView();
86 if (web_contents_->ShowingInterstitialPage())
87 web_contents_->GetInterstitialPage()->Focus();
89 web_contents_->GetRenderWidgetHostView()->Focus();
93 if (web_contents_->FocusLocationBarByDefault())
94 web_contents_->SetFocusToLocationBar(false)
    [all...]
  /external/chromium_org/chrome/browser/tab_contents/
background_contents.cc 41 web_contents_.reset(WebContents::CreateWithSessionStorage(
44 web_contents_.reset(WebContents::Create(create_params));
47 web_contents_.get(), extensions::VIEW_TYPE_BACKGROUND_CONTENTS);
48 web_contents_->SetDelegate(this);
49 content::WebContentsObserver::Observe(web_contents_.get());
51 web_contents_.get());
71 if (!web_contents_.get()) // Will be null for unit tests.
86 return web_contents_.get() ? web_contents_->GetURL() : GURL::EmptyGURL();
  /external/chromium_org/chrome/browser/ui/views/
color_chooser_aura.cc 16 : web_contents_(web_contents) {
24 if (web_contents_)
25 web_contents_->DidChooseColorInColorChooser(color);
47 if (web_contents_)
48 web_contents_->DidEndColorChooser();
  /external/chromium_org/chrome/browser/ui/find_bar/
find_bar_controller.cc 33 web_contents_(NULL),
38 DCHECK(!web_contents_);
43 FindTabHelper::FromWebContents(web_contents_);
60 // |web_contents_| can be NULL for a number of reasons, for example when the
62 if (web_contents_) {
64 FindTabHelper::FromWebContents(web_contents_);
80 if (web_contents_) {
85 FindTabHelper::FromWebContents(web_contents_);
90 web_contents_ = contents;
92 web_contents_ ? FindTabHelper::FromWebContents(web_contents_
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
login_manager_test.h 62 // Executes given JS |expression| in |web_contents_| and checks
68 content::WebContents* web_contents() { return web_contents_; }
74 web_contents_ = web_contents;
79 content::WebContents* web_contents_; member in class:chromeos::LoginManagerTest
  /external/chromium_org/chrome/browser/ui/android/tab_contents/
chrome_web_contents_view_delegate_android.cc 16 : web_contents_(web_contents) {
36 content::ContentViewCore::FromWebContents(web_contents_);
46 ContextMenuHelper* helper = ContextMenuHelper::FromWebContents(web_contents_);
  /external/chromium_org/chrome/browser/ui/app_modal_dialogs/
app_modal_dialog.cc 23 web_contents_(web_contents) {
31 web_contents_->GetDelegate()->ActivateContents(web_contents_);
  /external/chromium_org/chrome/browser/task_manager/
printing_information.cc 43 content::WebContents* web_contents_; member in class:task_manager::PrintingResource
51 web_contents_(web_contents) {}
60 util::GetTitleFromWebContents(web_contents_));
64 FaviconTabHelper::CreateForWebContents(web_contents_);
65 return FaviconTabHelper::FromWebContents(web_contents_)->
69 WebContents* PrintingResource::GetWebContents() const { return web_contents_; }

Completed in 913 milliseconds

1 2 3 4 5 6 7 8 9