/external/chromium/chrome/browser/sync/glue/ |
D | sync_backend_host.cc | 530 if (!host_ || !host_->frontend_) in NotifyPassphraseRequired() 533 DCHECK_EQ(MessageLoop::current(), host_->frontend_loop_); in NotifyPassphraseRequired() 540 host_->frontend_->OnPassphraseRequired(for_decryption); in NotifyPassphraseRequired() 544 if (!host_ || !host_->frontend_) in NotifyPassphraseFailed() 547 DCHECK_EQ(MessageLoop::current(), host_->frontend_loop_); in NotifyPassphraseFailed() 552 host_->frontend_->OnPassphraseRequired(true); in NotifyPassphraseFailed() 557 if (!host_ || !host_->frontend_) in NotifyPassphraseAccepted() 560 DCHECK_EQ(MessageLoop::current(), host_->frontend_loop_); in NotifyPassphraseAccepted() 563 host_->PersistEncryptionBootstrapToken(bootstrap_token); in NotifyPassphraseAccepted() 564 host_->frontend_->OnPassphraseAccepted(); in NotifyPassphraseAccepted() [all …]
|
/external/chromium/chrome/browser/renderer_host/ |
D | render_widget_host_view_views.cc | 155 : host_(host), in RenderWidgetHostViewViews() 166 host_->set_view(this); in RenderWidgetHostViewViews() 188 return host_; in GetRenderWidgetHost() 198 if (host_) in DidBecomeSelected() 199 host_->WasRestored(); in DidBecomeSelected() 213 if (host_) in WasHidden() 214 host_->WasHidden(); in WasHidden() 225 if (host_) in SetSize() 226 host_->WasResized(); in SetSize() 338 DCHECK(host_); in RenderViewGone() [all …]
|
D | download_throttling_resource_handler.cc | 23 : host_(host), in DownloadThrottlingResourceHandler() 36 host_->PauseRequest(render_process_host_id_, request_id_, true); in DownloadThrottlingResourceHandler() 43 host_->download_request_limiter()->CanDownloadOnIOThread( in DownloadThrottlingResourceHandler() 169 host_->CancelRequest(render_process_host_id_, request_id_, false); in CancelDownload() 177 new DownloadResourceHandler(host_, in ContinueDownload() 182 host_->download_file_manager(), in ContinueDownload() 193 host_->PauseRequest(render_process_host_id_, request_id_, false); in ContinueDownload()
|
D | render_widget_host_view_gtk.cc | 181 host_view->host_->Shutdown(); in OnKeyPressReleaseEvent() 290 host_view->host_->OnMouseActivate(); in OnButtonPressReleaseEvent() 314 host_view->host_->Shutdown(); in OnButtonPressReleaseEvent() 501 : host_(widget_host), in RenderWidgetHostViewGtk() 518 host_->set_view(this); in RenderWidgetHostViewGtk() 603 return host_; in GetRenderWidgetHost() 613 host_->WasRestored(); in DidBecomeSelected() 649 host_->WasResized(); in SetSize() 681 host_->Blur(); in Blur() 806 host_ = NULL; in Destroy() [all …]
|
/external/chromium/chrome/common/extensions/ |
D | url_pattern.cc | 112 host_.clear(); in Parse() 160 host_ = pattern.substr(host_start_pos, host_end_pos - host_start_pos); in Parse() 164 base::SplitString(host_, '.', &host_components); in Parse() 170 host_ = JoinString(host_components, '.'); in Parse() 175 if (host_.find('*') != std::string::npos) in Parse() 183 if (strictness == PARSE_STRICT && host_.find(':') != std::string::npos) in Parse() 251 if (test.host() == host_) in MatchesHost() 257 if (match_subdomains_ && host_.empty()) in MatchesHost() 270 if (test.host().length() <= (host_.length() + 1)) in MatchesHost() 273 if (test.host().compare(test.host().length() - host_.length(), in MatchesHost() [all …]
|
D | url_pattern.h | 142 const std::string& host() const { return host_; } in host() 143 void set_host(const std::string& host) { host_ = host; } in set_host() 214 return a.host_.compare(b.host_) < 0; in EffectiveHostCompare() 250 std::string host_; variable
|
/external/chromium/net/base/ |
D | host_port_pair.h | 34 return host_ < other.host_; 39 return host_ == other.host_ && port_ == other.port_; in Equals() 43 return host_; in host() 51 host_ = in_host; in set_host() 68 std::string host_;
|
D | host_port_pair.cc | 17 : host_(in_host), port_(in_port) {} in HostPortPair() 36 if (host_.find(':') != std::string::npos) { in HostForURL() 37 DCHECK_NE(host_[0], '['); in HostForURL() 38 return base::StringPrintf("[%s]", host_.c_str()); in HostForURL() 41 return host_; in HostForURL()
|
/external/chromium/chrome/browser/search_engines/ |
D | search_host_to_urls_map_unittest.cc | 31 std::string host_; member in SearchHostToURLsMapTest 38 host_ = "www.unittest.com"; in SetUp() 39 t_urls_[0].SetURL("http://" + host_ + "/path1", 0, 0); in SetUp() 40 t_urls_[1].SetURL("http://" + host_ + "/path2", 0, 0); in SetUp() 64 const TemplateURL* found_url = provider_map_->GetTemplateURLForHost(host_); in TEST_F() 67 const TemplateURLSet* urls = provider_map_->GetURLsForHost(host_); in TEST_F() 88 ASSERT_EQ(&t_urls_[1], provider_map_->GetTemplateURLForHost(host_)); in TEST_F() 111 const TemplateURL* found_url = provider_map_->GetTemplateURLForHost(host_); in TEST_F() 117 "a" + host_); in TEST_F() 122 const TemplateURLSet* urls = provider_map_->GetURLsForHost(host_); in TEST_F() [all …]
|
/external/chromium/chrome/browser/download/ |
D | download_request_infobar_delegate.cc | 17 host_(host) { in DownloadRequestInfoBarDelegate() 24 if (host_) in InfoBarClosed() 25 host_->Cancel(); in InfoBarClosed() 45 if (host_) { in Accept() 47 host_->Accept(); in Accept() 50 return !host_; in Accept()
|
/external/chromium/chrome/browser/ui/gtk/extensions/ |
D | extension_popup_gtk.cc | 42 host_(host), in ExtensionPopupGtk() 46 host_->view()->SetContainer(this); in ExtensionPopupGtk() 69 if (Details<ExtensionHost>(host_.get()) == details) in Observe() 73 if (Details<ExtensionHost>(host_.get()) == details) in Observe() 78 if (Details<RenderViewHost>(host_->render_view_host()) != details) in Observe() 100 host_->render_view_host()); in ShowPopup() 103 Source<Profile>(host_->profile())); in ShowPopup() 123 host_->view()->native_view(), in ShowPopup() 172 return gfx::Rect(host_->view()->native_view()->allocation); in GetViewBounds()
|
/external/chromium/chrome/browser/chromeos/status/ |
D | status_area_view.cc | 27 : host_(host), in StatusAreaView() 37 clock_view_ = new ClockMenuButton(host_); in Init() 42 input_method_view_ = new InputMethodMenuButton(host_); in Init() 46 network_view_ = new NetworkMenuButton(host_); in Init() 50 power_view_ = new PowerMenuButton(host_); in Init() 54 window_switcher_view_ = new WindowSwitcherButton(host_); in Init()
|
D | clock_menu_button.cc | 77 host_->GetProfile() && in UpdateText() 78 host_->GetProfile()->GetPrefs()->GetBoolean(prefs::kUse24HourClock); in UpdateText() 128 return host_->ShouldOpenButtonOptions(this) ? 3 : 1; in GetItemCount() 150 host_->OpenButtonOptions(this); in ActivatedAt()
|
/external/chromium/chrome/browser/ui/views/extensions/ |
D | extension_view.cc | 22 : host_(host), in ExtensionView() 27 host_->set_view(this); in ExtensionView() 42 return host_->extension(); in extension() 46 return host_->render_view_host(); in render_view_host() 109 host_->CreateRenderViewSoon(view); in CreateWidgetHostView() 119 if (host_->did_stop_loading()) { in ShowIfCompletelyLoaded() 202 host_->DisableScrollbarsForSmallWindows(largest_popup_size); in RenderViewCreated()
|
/external/chromium/webkit/glue/media/ |
D | simple_data_source_unittest.cc | 72 data_source_->set_host(&host_); in InitializeDataSource() 92 EXPECT_CALL(host_, SetLoaded(is_loaded)); in RequestSucceeded() 95 EXPECT_CALL(host_, SetTotalBytes(kDataSize)); in RequestSucceeded() 96 EXPECT_CALL(host_, SetBufferedBytes(kDataSize)); in RequestSucceeded() 151 StrictMock<media::MockFilterHost> host_; member in webkit_glue::SimpleDataSourceTest 187 data_source_->set_host(&host_); in TEST_F() 190 EXPECT_CALL(host_, SetLoaded(true)); in TEST_F() 191 EXPECT_CALL(host_, SetTotalBytes(sizeof(kDataUrlDecoded))); in TEST_F() 192 EXPECT_CALL(host_, SetBufferedBytes(sizeof(kDataUrlDecoded))); in TEST_F()
|
/external/chromium/chrome/browser/importer/ |
D | in_process_importer_bridge.cc | 20 host_(host) { in InProcessImporterBridge() 88 NewRunnableMethod(host_, &ImporterHost::NotifyImportStarted)); in NotifyStarted() 94 NewRunnableMethod(host_, &ImporterHost::NotifyImportItemStarted, item)); in NotifyItemStarted() 100 NewRunnableMethod(host_, &ImporterHost::NotifyImportItemEnded, item)); in NotifyItemEnded() 106 NewRunnableMethod(host_, &ImporterHost::NotifyImportEnded)); in NotifyEnded()
|
/external/chromium/chrome/browser/ui/views/ |
D | dropdown_bar_view.h | 22 : host_(host), in DropdownBarView() 39 DropdownBarHost* host() const { return host_; } in host() 43 DropdownBarHost* host_;
|
D | dropdown_bar_host_win.cc | 37 gfx::Rect window_rect = host_->GetWindowScreenBounds(); in SetWidgetPositionNative() 43 if (!host_->IsVisible()) in SetWidgetPositionNative() 46 ::SetWindowPos(host_->GetNativeView(), HWND_TOP, new_pos.x(), new_pos.y(), in SetWidgetPositionNative()
|
D | dropdown_bar_host.cc | 57 host_.reset(CreateHost()); in Init() 58 host_->InitWithWidget(browser_view_->GetWidget(), gfx::Rect()); in Init() 59 host_->SetContentsView(view_); in Init() 64 views::FocusManager::GetFocusManagerForNativeView(host_->GetNativeView()); in Init() 118 host_->Hide(); in Hide() 181 host_->Hide(); in AnimationEnded()
|
/external/chromium/chrome/browser/chromeos/login/ |
D | wizard_in_process_browser_test.cc | 19 host_(NULL) { in WizardInProcessBrowserTest() 30 host_ = BaseLoginDisplayHost::default_host(); in CreateBrowser() 37 delete host_; in CleanUpOnMainThread()
|
D | wizard_controller.cc | 241 host_(host), in WizardController() 353 host_->SetOobeProgress(chromeos::BackgroundView::SELECT_NETWORK); in ShowNetworkScreen() 358 host_->SetOobeProgress(chromeos::BackgroundView::SIGNIN); in ShowLoginScreen() 359 host_->StartSignInScreen(); in ShowLoginScreen() 380 host_->SetOobeProgress(chromeos::BackgroundView::EULA); in ShowUpdateScreen() 382 host_->SetOobeProgress(chromeos::BackgroundView::SELECT_NETWORK); in ShowUpdateScreen() 390 host_->SetOobeProgress(chromeos::BackgroundView::PICTURE); in ShowUserImageScreen() 391 host_->SetShutdownButtonEnabled(false); in ShowUserImageScreen() 399 host_->SetOobeProgress(chromeos::BackgroundView::EULA); in ShowEulaScreen() 414 host_->SetOobeProgress(chromeos::BackgroundView::REGISTRATION); in ShowRegistrationScreen() [all …]
|
D | existing_user_controller.cc | 67 : host_(host), in ExistingUserController() 74 login_display_ = host_->CreateLoginDisplay(this); in ExistingUserController() 233 host_->StartWizard(WizardController::kEnterpriseEnrollmentScreenName, in OnEnrollmentOwnershipCheckCompleted() 370 host_->OnSessionStart(); in OnProfilePrepared() 450 host_->StartWizard(screen_name, start_url); in ActivateWizard() 454 return host_->GetNativeWindow(); in GetNativeWindow() 458 host_->SetStatusAreaEnabled(enable); in SetStatusAreaEnabled()
|
/external/chromium/chrome/browser/ui/views/notifications/ |
D | balloon_view_host.cc | 31 : host_(host), in BalloonViewHostView() 41 host_->Init(GetWidget()->GetNativeView()); in ViewHierarchyChanged() 47 BalloonViewHost* host_; member in BalloonViewHostView
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | asynchttprequest.h | 61 const std::string& host() { return host_; } in host() 62 void set_host(const std::string& host) { host_ = host; } in set_host() 98 std::string host_; variable
|
D | httprequest.h | 61 const std::string& host() { return host_; } in host() 62 void set_host(const std::string& host) { host_ = host; } in set_host() 93 std::string host_; variable
|