Searched refs:host_ (Results 51 - 75 of 321) sorted by relevance

1234567891011>>

/external/chromium_org/ui/aura/test/
H A Daura_test_helper.h50 Window* root_window() { return host_->window(); }
51 ui::EventProcessor* event_processor() { return host_->event_processor(); }
52 WindowTreeHost* host() { return host_.get(); }
61 scoped_ptr<WindowTreeHost> host_; member in class:aura::test::AuraTestHelper
H A Dtest_screen.cc45 DCHECK(!host_);
46 host_ = WindowTreeHost::Create(gfx::Rect(display_.GetSizeInPixel()));
47 host_->window()->AddObserver(this);
48 host_->InitHost();
49 return host_;
55 host_->OnHostResized(bounds_in_pixel.size());
67 host_->SetRootTransform(GetRotationTransform() * GetUIScaleTransform());
76 host_->SetRootTransform(GetRotationTransform() * GetUIScaleTransform());
118 DCHECK_EQ(host_->window(), window);
124 if (host_
[all...]
/external/chromium_org/ui/views/controls/native/
H A Dnative_view_host_test_base.cc41 host_.reset(new NativeViewHostTesting(this));
68 host_.reset();
72 return host_.release();
76 return host_->native_wrapper_.get();
H A Dnative_view_host_test_base.h26 // Create a testing |host_| that tracks destructor calls.
45 NativeViewHost* host() { return host_.get(); }
55 scoped_ptr<NativeViewHost> host_; member in class:views::test::NativeViewHostTestBase
/external/chromium_org/cc/test/
H A Dlayer_test_common.h56 scoped_ptr<T> layer = T::Create(host_->host_impl()->active_tree(), 2);
64 scoped_ptr<T> layer = T::Create(host_->host_impl()->active_tree(), 2, a);
73 T::Create(host_->host_impl()->active_tree(), 2, a, b);
82 T::Create(host_->host_impl()->active_tree(), 2, a, b, c, d);
100 T::Create(host_->host_impl()->active_tree(), 2, a, b, c, d, e);
116 return host_->host_impl()->output_surface();
119 return host_->host_impl()->resource_provider();
122 FakeLayerTreeHostImpl* host_impl() const { return host_->host_impl(); }
123 Proxy* proxy() const { return host_->host_impl()->proxy(); }
128 scoped_ptr<FakeLayerTreeHost> host_; member in class:cc::LayerTestCommon::LayerImplTest
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dpepper_graphics_2d_host_unittest.cc38 host_.reset();
48 host_.reset(PepperGraphics2DHost::Create(&renderer_ppapi_host_,
54 DCHECK(host_.get());
61 host_->OnHostMsgPaintImageData(
67 ppapi::proxy::ResourceMessageCallParams(host_->pp_resource(), 0));
69 host_->OnHostMsgFlush(&context, latency);
70 host_->ViewFlushedPaint();
71 host_->SendOffscreenFlushAck();
77 host_->Paint(canvas.get(),
95 scoped_ptr<PepperGraphics2DHost> host_; member in class:content::PepperGraphics2DHostTest
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dconstrained_window_views.cc35 : host_(host),
38 DCHECK(host_);
40 host_->AddObserver(this);
45 if (host_)
46 host_->RemoveObserver(this);
58 UpdateBrowserModalDialogPosition(target_widget_, host_);
62 host_->RemoveObserver(this);
63 host_ = NULL;
67 ModalDialogHost* host_; member in class:__anon5236::BrowserModalDialogHostObserverViews
/external/chromium_org/content/browser/renderer_host/media/
H A Dwebrtc_identity_service_host_unittest.cc101 host_(new WebRTCIdentityServiceHostForTest(store_.get())) {}
104 host_->OnMessageReceived(
112 host_->OnMessageReceived(WebRTCIdentityMsg_CancelRequest());
116 EXPECT_EQ(1, host_->GetNumberOfMessages());
117 IPC::Message ipc = host_->GetLastMessage();
128 EXPECT_EQ(1, host_->GetNumberOfMessages());
129 IPC::Message ipc = host_->GetLastMessage();
142 scoped_refptr<WebRTCIdentityServiceHostForTest> host_; member in class:content::__anon7331::WebRTCIdentityServiceHostTest
157 EXPECT_EQ(0, host_->GetNumberOfMessages());
H A Ddevice_request_message_filter_unittest.cc111 EXPECT_EQ(0u, host_->requested_devices().size());
116 host_->requested_devices().size());
118 EXPECT_EQ(kRequestId, host_->received_id());
135 host_ = new MockDeviceRequestMessageFilter(resource_context_.get(),
139 scoped_refptr<MockDeviceRequestMessageFilter> host_; member in class:content::DeviceRequestMessageFilterTest
171 host_->OnMessageReceived(MediaStreamHostMsg_GetSources(request_id, origin));
175 host_->DevicesEnumerated(-1, -1, kAudioLabel, physical_audio_devices_);
179 host_->DevicesEnumerated(-1, -1, kVideoLabel, physical_video_devices_);
/external/chromium_org/content/browser/android/
H A Ddate_time_chooser_android.cc46 : host_(NULL) {
68 host_->Send(new ViewMsg_ReplaceDateTime(host_->GetRoutingID(), value));
72 host_->Send(new ViewMsg_CancelDateTimeDialog(host_->GetRoutingID()));
84 host_ = host;
/external/chromium_org/extensions/common/
H A Durl_pattern.cc236 host_ = pattern.substr(host_start_pos, host_end_pos - host_start_pos);
240 base::SplitString(host_, '.', &host_components);
251 host_ = JoinString(host_components, '.');
258 size_t port_pos = host_.find(':');
260 if (!SetPort(host_.substr(port_pos + 1)))
262 host_ = host_.substr(0, port_pos);
268 if (host_.find('*') != std::string::npos)
272 if (host_.find('\0') != std::string::npos)
285 host_
[all...]
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_message_filter.cc33 DCHECK(!host_.get());
38 host_.reset(new DOMStorageHost(context_.get(), render_process_id_));
47 host_.reset();
75 DCHECK(host_.get());
96 if (!host_->OpenStorageArea(connection_id, namespace_id, origin)) {
104 host_->CloseStorageArea(connection_id);
111 if (!host_->ExtractAreaValues(connection_id, map, send_log_get_messages)) {
126 bool success = host_->SetAreaItem(connection_id, key, value,
135 host_->LogGetAreaItem(connection_id, key, value);
146 host_
[all...]
/external/chromium_org/content/browser/frame_host/
H A Drender_widget_host_view_child_frame.cc18 : host_(RenderWidgetHostImpl::From(widget_host)),
20 host_->SetView(this);
32 return host_;
36 host_->WasResized();
64 return !host_->is_hidden();
128 if (!host_->is_hidden())
130 host_->WasShown(ui::LatencyInfo());
134 if (host_->is_hidden())
136 host_->WasHidden();
174 host_
[all...]
H A Drender_widget_host_view_guest.cc81 // beginning, the teardown path might call WasShown() while |host_| is in
87 if ((guest_ && guest_->is_in_destruction()) || !host_->is_hidden())
95 host_->WasShown(ui::LatencyInfo());
100 if ((guest_ && guest_->is_in_destruction()) || host_->is_hidden())
102 host_->WasHidden();
107 host_->WasResized();
119 guest_->SetFocus(host_, true);
216 host_->GetProcess()->GetID(),
217 host_->GetRoutingID(),
379 host_
[all...]
/external/chromium_org/content/shell/browser/
H A Dshell_platform_data_aura.h37 aura::WindowTreeHost* host() { return host_.get(); }
40 scoped_ptr<aura::WindowTreeHost> host_; member in class:content::ShellPlatformDataAura
/external/chromium_org/ppapi/tests/
H A Dtest_host_resolver_private_disallowed.cc26 GetLocalHostPort(instance_->pp_instance(), &host_, &port_);
46 host_resolver.Resolve(host_, port_, hint, callback.GetCallback()));
H A Dtest_tcp_socket_private_trusted.cc28 if (!GetLocalHostPort(instance_->pp_instance(), &host_, &port_))
46 socket.Connect(host_.c_str(), ssl_port_, cb.GetCallback()));
51 socket.SSLHandshake(host_.c_str(), ssl_port_, cb.GetCallback()));
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_view_views.h46 extensions::ExtensionHost* host() const { return host_; }
47 const extensions::Extension* extension() const { return host_->extension(); }
49 return host_->render_view_host();
89 // Note that host_ owns view
90 extensions::ExtensionHost* host_; member in class:ExtensionViewViews
/external/chromium_org/chrome/test/chromedriver/net/
H A Dnet_util.cc66 NetAddress::NetAddress(int port) : host_("127.0.0.1"), port_(port) {}
69 : host_(host), port_(port) {}
78 return host_ + base::StringPrintf(":%d", port_);
82 return host_;
H A Dnet_util.h28 std::string host_; member in class:NetAddress
/external/chromium_org/ipc/mojo/
H A Dipc_mojo_perftest.cc35 host_.reset(new IPC::ChannelMojoHost(task_runner()));
36 return IPC::ChannelMojo::CreateServerFactory(host_->channel_delegate(),
43 host_->OnClientLaunched(client_process());
53 scoped_ptr<IPC::ChannelMojoHost> host_; member in class:__anon8497::MojoChannelPerfTest
/external/chromium_org/ash/shelf/
H A Dapp_list_button.cc42 host_(host),
55 host_->PointerPressedOnButton(this, ShelfButtonHost::MOUSE, event);
61 host_->PointerReleasedOnButton(this, ShelfButtonHost::MOUSE, false);
65 host_->PointerReleasedOnButton(this, ShelfButtonHost::MOUSE, true);
71 host_->PointerDraggedOnButton(this, ShelfButtonHost::MOUSE, event);
77 host_->MouseMovedOverButton(this);
82 host_->MouseEnteredButton(this);
87 host_->MouseExitedButton(this);
95 host_->PointerPressedOnButton(this, ShelfButtonHost::TOUCH, *event);
99 host_
[all...]
/external/chromium_org/chrome/browser/chromeos/login/
H A Duser_flow.h38 host_ = host;
42 return host_;
46 LoginDisplayHost* host_; member in class:chromeos::UserFlow
/external/chromium_org/chrome/renderer/pepper/
H A Dpepper_shared_memory_message_filter.cc20 : InstanceMessageFilter(host->GetPpapiHost()), host_(host) {}
36 return host_->GetPpapiHost()->Send(msg);
70 plugin_handle->set_shmem(host_->ShareHandleWithRemote(host_handle, false),
/external/chromium_org/content/browser/loader/
H A Dresource_dispatcher_host_unittest.cc765 host_.CancelRequestsForProcess(*it);
768 host_.Shutdown();
806 host_.OnCancelRequest(request_id);
861 ResourceMessageFilter* old_filter = host_.filter_;
862 host_.filter_ = new_filter;
878 ResourceDispatcherHostImpl host_; member in class:content::ResourceDispatcherHostTest
905 host_.OnMessageReceived(msg, filter);
910 host_.CancelRequest(filter_->child_id(), request_id);
921 net::URLRequest* req = host_.GetURLRequest(gid);
1045 host_
[all...]

Completed in 2815 milliseconds

1234567891011>>