Searched refs:host_ (Results 1 - 25 of 62) sorted by relevance

123

/external/chromium/chrome/browser/download/
H A Ddownload_request_infobar_delegate.cc17 host_(host) {
24 if (host_)
25 host_->Cancel();
45 if (host_) {
46 // Accept() call will nullify host_ if no further prompts are required.
47 host_->Accept();
50 return !host_;
H A Ddownload_request_infobar_delegate.h26 host_ = host;
39 DownloadRequestLimiter::TabDownloadState* host_; member in class:DownloadRequestInfoBarDelegate
/external/chromium/net/base/
H A Dhost_port_pair.h34 return host_ < other.host_;
39 return host_ == other.host_ && port_ == other.port_;
43 return host_;
51 host_ = in_host;
58 // ToString() will convert the HostPortPair to "host:port". If |host_| is an
59 // IPv6 literal, it will add brackets around |host_|.
62 // Returns |host_|, adding IPv6 brackets if needed.
66 // If |host_| represent
68 std::string host_; member in class:net::HostPortPair
[all...]
H A Dhost_port_pair.cc17 : host_(in_host), port_(in_port) {}
36 if (host_.find(':') != std::string::npos) {
37 DCHECK_NE(host_[0], '[');
38 return base::StringPrintf("[%s]", host_.c_str());
41 return host_;
/external/chromium/chrome/browser/chromeos/login/
H A Dwizard_in_process_browser_test.cc19 host_(NULL) {
30 host_ = BaseLoginDisplayHost::default_host();
37 delete host_;
H A Dwizard_in_process_browser_test.h46 LoginDisplayHost* host_; member in class:chromeos::WizardInProcessBrowserTest
/external/chromium/chrome/browser/ui/views/
H A Ddropdown_bar_view.h22 : host_(host),
39 DropdownBarHost* host() const { return host_; }
43 DropdownBarHost* host_; member in class:DropdownBarView
H A Ddropdown_bar_host_gtk.cc27 host_->SetBounds(new_pos);
28 host_->Show();
H A Ddropdown_bar_host_win.cc37 gfx::Rect window_rect = host_->GetWindowScreenBounds();
43 if (!host_->IsVisible())
46 ::SetWindowPos(host_->GetNativeView(), HWND_TOP, new_pos.x(), new_pos.y(),
/external/chromium/chrome/browser/sync/glue/
H A Dsync_backend_host.cc530 if (!host_ || !host_->frontend_)
533 DCHECK_EQ(MessageLoop::current(), host_->frontend_loop_);
540 host_->frontend_->OnPassphraseRequired(for_decryption);
544 if (!host_ || !host_->frontend_)
547 DCHECK_EQ(MessageLoop::current(), host_->frontend_loop_);
552 host_->frontend_->OnPassphraseRequired(true);
557 if (!host_ || !host_
[all...]
/external/chromium/chrome/browser/chromeos/status/
H A Dstatus_area_view.cc27 : host_(host),
37 clock_view_ = new ClockMenuButton(host_);
42 input_method_view_ = new InputMethodMenuButton(host_);
46 network_view_ = new NetworkMenuButton(host_);
50 power_view_ = new PowerMenuButton(host_);
54 window_switcher_view_ = new WindowSwitcherButton(host_);
/external/chromium/chrome/browser/search_engines/
H A Dsearch_host_to_urls_map_unittest.cc31 std::string host_; member in class:SearchHostToURLsMapTest
38 host_ = "www.unittest.com";
39 t_urls_[0].SetURL("http://" + host_ + "/path1", 0, 0);
40 t_urls_[1].SetURL("http://" + host_ + "/path2", 0, 0);
64 const TemplateURL* found_url = provider_map_->GetTemplateURLForHost(host_);
67 const TemplateURLSet* urls = provider_map_->GetURLsForHost(host_);
88 ASSERT_EQ(&t_urls_[1], provider_map_->GetTemplateURLForHost(host_));
111 const TemplateURL* found_url = provider_map_->GetTemplateURLForHost(host_);
117 "a" + host_);
122 const TemplateURLSet* urls = provider_map_->GetURLsForHost(host_);
[all...]
/external/chromium/chrome/common/extensions/
H A Durl_pattern.cc112 host_.clear();
160 host_ = pattern.substr(host_start_pos, host_end_pos - host_start_pos);
164 base::SplitString(host_, '.', &host_components);
170 host_ = JoinString(host_components, '.');
175 if (host_.find('*') != std::string::npos)
183 if (strictness == PARSE_STRICT && host_.find(':') != std::string::npos)
251 if (test.host() == host_)
257 if (match_subdomains_ && host_.empty())
270 if (test.host().length() <= (host_.length() + 1))
273 if (test.host().compare(test.host().length() - host_
[all...]
H A Durl_pattern.h142 const std::string& host() const { return host_; }
143 void set_host(const std::string& host) { host_ = host; }
214 return a.host_.compare(b.host_) < 0;
250 std::string host_; member in class:URLPattern
/external/chromium/chrome/browser/renderer_host/
H A Drender_widget_host_view_views.cc155 : host_(host),
166 host_->set_view(this);
188 return host_;
198 if (host_)
199 host_->WasRestored();
213 if (host_)
214 host_->WasHidden();
225 if (host_)
226 host_->WasResized();
338 DCHECK(host_);
[all...]
H A Ddownload_throttling_resource_handler.cc23 : host_(host),
36 host_->PauseRequest(render_process_host_id_, request_id_, true);
43 host_->download_request_limiter()->CanDownloadOnIOThread(
169 host_->CancelRequest(render_process_host_id_, request_id_, false);
177 new DownloadResourceHandler(host_,
182 host_->download_file_manager(),
193 host_->PauseRequest(render_process_host_id_, request_id_, false);
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_popup_gtk.cc42 host_(host),
46 host_->view()->SetContainer(this);
69 if (Details<ExtensionHost>(host_.get()) == details)
73 if (Details<ExtensionHost>(host_.get()) == details)
78 if (Details<RenderViewHost>(host_->render_view_host()) != details)
100 host_->render_view_host());
103 Source<Profile>(host_->profile()));
123 host_->view()->native_view(),
172 return gfx::Rect(host_->view()->native_view()->allocation);
/external/chromium/chrome/browser/ui/views/notifications/
H A Dballoon_view_host.cc31 : host_(host),
41 host_->Init(GetWidget()->GetNativeView());
47 BalloonViewHost* host_; member in class:BalloonViewHostView
/external/chromium/third_party/libjingle/source/talk/base/
H A Dasynchttprequest.h61 const std::string& host() { return host_; }
62 void set_host(const std::string& host) { host_ = host; }
98 std::string host_; member in class:talk_base::AsyncHttpRequest
H A Dasynchttprequest.cc54 factory_.UseSSL(host_.c_str());
62 client_.set_server(SocketAddress(host_, port_));
64 LOG(LS_INFO) << "HttpRequest start: " << host_ + client_.request().path;
H A Dhttprequest.cc87 factory.UseSSL(host_.c_str());
102 SocketAddress server(host_, port_);
105 LOG(LS_INFO) << "HttpRequest start: " << host_ + client_.request().path;
H A Dhttprequest.h61 const std::string& host() { return host_; }
62 void set_host(const std::string& host) { host_ = host; }
93 std::string host_; member in class:talk_base::HttpRequest
/external/chromium/chrome/browser/importer/
H A Din_process_importer_bridge.cc20 host_(host) {
88 NewRunnableMethod(host_, &ImporterHost::NotifyImportStarted));
94 NewRunnableMethod(host_, &ImporterHost::NotifyImportItemStarted, item));
100 NewRunnableMethod(host_, &ImporterHost::NotifyImportItemEnded, item));
106 NewRunnableMethod(host_, &ImporterHost::NotifyImportEnded));
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_view.cc22 : host_(host),
27 host_->set_view(this);
42 return host_->extension();
46 return host_->render_view_host();
109 host_->CreateRenderViewSoon(view);
119 if (host_->did_stop_loading()) {
202 host_->DisableScrollbarsForSmallWindows(largest_popup_size);
/external/chromium/webkit/glue/media/
H A Dsimple_data_source_unittest.cc72 data_source_->set_host(&host_);
92 EXPECT_CALL(host_, SetLoaded(is_loaded));
95 EXPECT_CALL(host_, SetTotalBytes(kDataSize));
96 EXPECT_CALL(host_, SetBufferedBytes(kDataSize));
151 StrictMock<media::MockFilterHost> host_; member in class:webkit_glue::SimpleDataSourceTest
187 data_source_->set_host(&host_);
190 EXPECT_CALL(host_, SetLoaded(true));
191 EXPECT_CALL(host_, SetTotalBytes(sizeof(kDataUrlDecoded)));
192 EXPECT_CALL(host_, SetBufferedBytes(sizeof(kDataUrlDecoded)));

Completed in 284 milliseconds

123