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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
callclient_unittest.cc 38 CallClient *client = new CallClient(pump.client(), "app", "version"); local
39 delete client;
44 CallClient *client = new CallClient(pump.client(), "app", "version"); local
45 client->SetMediaEngine(new cricket::FileMediaEngine);
46 delete client;
  /external/chromium_org/net/tools/quic/test_tools/
quic_client_peer.cc 14 QuicCryptoClientConfig* QuicClientPeer::GetCryptoConfig(QuicClient* client) {
15 return &client->crypto_config_;
19 bool QuicClientPeer::CreateUDPSocket(QuicClient* client) {
20 return client->CreateUDPSocket();
24 void QuicClientPeer::SetClientPort(QuicClient* client, int port) {
25 client->client_address_ = IPEndPoint(client->client_address_.address(), port);
29 void QuicClientPeer::SetWriter(QuicClient* client, QuicPacketWriter* writer) {
30 client->writer_.reset(writer);
quic_client_peer.h 23 static QuicCryptoClientConfig* GetCryptoConfig(QuicClient* client);
24 static bool CreateUDPSocket(QuicClient* client);
25 static void SetClientPort(QuicClient* client, int port);
26 static void SetWriter(QuicClient* client, QuicPacketWriter* writer);
  /external/chromium_org/ui/aura/client/
window_stacking_client.cc 5 #include "ui/aura/client/window_stacking_client.h"
8 namespace client { namespace in namespace:aura
16 void SetWindowStackingClient(WindowStackingClient* client) {
17 instance = client;
24 } // namespace client
cursor_client.cc 5 #include "ui/aura/client/cursor_client.h"
10 DECLARE_WINDOW_PROPERTY_TYPE(aura::client::CursorClient*)
13 namespace client { namespace in namespace:aura
15 // A property key to store a client that handles window moves.
19 void SetCursorClient(Window* window, CursorClient* client) {
20 window->SetProperty(kCursorClientKey, client);
27 } // namespace client
  /external/chromium_org/ui/wm/public/
transient_window_client.cc 8 namespace client { namespace in namespace:aura
16 void SetTransientWindowClient(TransientWindowClient* client) {
17 instance = client;
24 } // namespace client
window_move_client.cc 10 DECLARE_WINDOW_PROPERTY_TYPE(aura::client::WindowMoveClient*)
13 namespace client { namespace in namespace:aura
15 // A property key to store a client that handles window moves.
19 void SetWindowMoveClient(Window* window, WindowMoveClient* client) {
20 window->SetProperty(kWindowMoveClientKey, client);
27 } // namespace client
scoped_tooltip_disabler.cc 11 namespace client { namespace in namespace:aura
17 TooltipClient* client = GetTooltipClient(root_); local
18 if (client)
19 client->SetTooltipsEnabled(false);
30 TooltipClient* client = GetTooltipClient(root_);
31 if (client)
32 client->SetTooltipsEnabled(true);
42 } // namespace client
  /external/chromium_org/cc/scheduler/
scheduler_unittest.cc 21 #define EXPECT_ACTION(action, client, action_index, expected_num_actions) \
23 EXPECT_EQ(expected_num_actions, client.num_actions_()); \
25 ASSERT_LT(action_index, client.num_actions_()) << scheduler; \
26 EXPECT_STREQ(action, client.Action(action_index)); \
28 for (int i = expected_num_actions; i < client.num_actions_(); ++i) \
29 ADD_FAILURE() << "Unexpected action: " << client.Action(i) \
30 << " with state:\n" << client.StateForAction(i); \
33 #define EXPECT_NO_ACTION(client) EXPECT_ACTION("", client, -1, 0)
35 #define EXPECT_SINGLE_ACTION(action, client) \
270 FakeSchedulerClient client; local
284 FakeSchedulerClient client; local
351 FakeSchedulerClient client; local
451 SchedulerClientThatsetNeedsDrawInsideDraw client; local
488 SchedulerClientThatsetNeedsDrawInsideDraw client; local
567 SchedulerClientThatSetNeedsCommitInsideDraw client; local
612 SchedulerClientThatsetNeedsDrawInsideDraw client; local
659 SchedulerClientThatSetNeedsCommitInsideDraw client; local
702 SchedulerClientNeedsManageTilesInDraw client; local
809 FakeSchedulerClient client; local
927 FakeSchedulerClient client; local
989 SchedulerClientNeedsManageTilesInDraw client; local
1180 FakeSchedulerClient client; local
1255 FakeSchedulerClient client; local
1347 FakeSchedulerClient client; local
1442 FakeSchedulerClient client; local
1536 FakeSchedulerClient client; local
1553 FakeSchedulerClient client; local
1590 FakeSchedulerClient client; local
1657 FakeSchedulerClient client; local
1708 FakeSchedulerClient client; local
1739 FakeSchedulerClient client; local
1798 FakeSchedulerClient client; local
1872 FakeSchedulerClient client; local
1913 FakeSchedulerClient client; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
BackForwardClientImpl.cpp 50 if (!m_webView->client())
53 return m_webView->client()->historyBackListCount();
58 if (!m_webView->client())
61 return m_webView->client()->historyForwardListCount();
66 if (!m_webView->client())
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
UserMediaController.cpp 35 UserMediaController::UserMediaController(UserMediaClient* client)
36 : m_client(client)
42 PassOwnPtrWillBeRawPtr<UserMediaController> UserMediaController::create(UserMediaClient* client)
44 return adoptPtrWillBeNoop(new UserMediaController(client));
47 void provideUserMediaTo(LocalFrame& frame, UserMediaClient* client)
49 UserMediaController::provideTo(frame, UserMediaController::supplementName(), UserMediaController::create(client));
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionController.cpp 36 SpeechRecognitionController::SpeechRecognitionController(PassOwnPtr<SpeechRecognitionClient> client)
37 : m_client(client)
43 // FIXME: Call m_client->pageDestroyed(); once we have implemented a client.
46 PassOwnPtrWillBeRawPtr<SpeechRecognitionController> SpeechRecognitionController::create(PassOwnPtr<SpeechRecognitionClient> client)
48 return adoptPtrWillBeNoop(new SpeechRecognitionController(client));
51 void provideSpeechRecognitionTo(Page& page, PassOwnPtr<SpeechRecognitionClient> client)
53 SpeechRecognitionController::provideTo(page, SpeechRecognitionController::supplementName(), SpeechRecognitionController::create(client));
  /external/chromium_org/ui/wm/core/
wm_state.cc 16 aura::client::SetWindowStackingClient(window_stacking_client_.get());
17 aura::client::SetTransientWindowClient(transient_window_client_.get());
21 if (aura::client::GetWindowStackingClient() == window_stacking_client_.get())
22 aura::client::SetWindowStackingClient(NULL);
24 if (aura::client::GetTransientWindowClient() ==
26 aura::client::SetTransientWindowClient(NULL);
  /external/chromium_org/extensions/browser/
extensions_browser_client.cc 21 void ExtensionsBrowserClient::Set(ExtensionsBrowserClient* client) {
22 g_client = client;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeGeometryNative.cpp 53 WebScrollbarThemeClientImpl client(scrollbar);
54 return m_theme->thumbPosition(&client);
59 WebScrollbarThemeClientImpl client(scrollbar);
60 return m_theme->thumbLength(&client);
65 WebScrollbarThemeClientImpl client(scrollbar);
66 return m_theme->trackPosition(&client);
71 WebScrollbarThemeClientImpl client(scrollbar);
72 return m_theme->trackLength(&client);
77 WebScrollbarThemeClientImpl client(scrollbar);
78 return m_theme->hasButtons(&client);
    [all...]
  /external/chromium_org/content/browser/appcache/
appcache_quota_client_unittest.cc 40 int64 GetOriginUsage(storage::QuotaClient* client,
44 AsyncGetOriginUsage(client, origin, type);
49 const std::set<GURL>& GetOriginsForType(storage::QuotaClient* client,
52 AsyncGetOriginsForType(client, type);
57 const std::set<GURL>& GetOriginsForHost(storage::QuotaClient* client,
61 AsyncGetOriginsForHost(client, type, host);
66 storage::QuotaStatusCode DeleteOriginData(storage::QuotaClient* client,
70 AsyncDeleteOriginData(client, type, origin);
75 void AsyncGetOriginUsage(storage::QuotaClient* client,
78 client->GetOriginUsage
159 AppCacheQuotaClient* client = CreateClient(); local
166 AppCacheQuotaClient* client = CreateClient(); local
183 AppCacheQuotaClient* client = CreateClient(); local
202 AppCacheQuotaClient* client = CreateClient(); local
214 AppCacheQuotaClient* client = CreateClient(); local
244 AppCacheQuotaClient* client = CreateClient(); local
265 AppCacheQuotaClient* client = CreateClient(); local
287 AppCacheQuotaClient* client = CreateClient(); local
330 AppCacheQuotaClient* client = CreateClient(); local
366 AppCacheQuotaClient* client = CreateClient(); local
401 AppCacheQuotaClient* client = CreateClient(); local
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
debugger_tracker.cc 12 DebuggerTracker::DebuggerTracker(DevToolsClient* client) {
13 client->AddListener(this);
18 Status DebuggerTracker::OnEvent(DevToolsClient* client,
23 return client->SendCommand("Debugger.resume", empty_params);
  /external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesisUtterance.cpp 31 PlatformSpeechSynthesisUtterance* PlatformSpeechSynthesisUtterance::create(PlatformSpeechSynthesisUtteranceClient* client)
33 return new PlatformSpeechSynthesisUtterance(client);
36 PlatformSpeechSynthesisUtterance::PlatformSpeechSynthesisUtterance(PlatformSpeechSynthesisUtteranceClient* client)
37 : m_client(client)
  /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
PushController.cpp 13 PushController::PushController(WebPushClient* client)
14 : m_client(client)
18 PassOwnPtrWillBeRawPtr<PushController> PushController::create(WebPushClient* client)
20 return adoptPtrWillBeNoop(new PushController(client));
26 return controller->client();
35 void providePushControllerTo(Page& page, WebPushClient* client)
37 PushController::provideTo(page, PushController::supplementName(), PushController::create(client));
  /external/chromium_org/components/password_manager/core/browser/
browser_save_password_progress_logger_unittest.cc 20 explicit TestLogger(PasswordManagerClient* client)
21 : BrowserSavePasswordProgressLogger(client) {}
34 MockPasswordManagerClient client; local
35 TestLogger logger(&client);
36 EXPECT_CALL(client, LogSavePasswordProgress(kTestText)).Times(1);
browser_save_password_progress_logger.cc 12 PasswordManagerClient* client)
13 : client_(client) {
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
InternalsGeolocation.cpp 48 GeolocationClientMock* client = new GeolocationClientMock(); local
52 GeolocationController::from(toLocalFrame(childFrame))->setClientForTest(client);
59 GeolocationClientMock* client = geolocationClient(document); local
60 if (!client)
62 client->setPosition(GeolocationPosition::create(currentTime(), latitude, longitude, accuracy));
68 GeolocationClientMock* client = geolocationClient(document); local
69 if (!client)
71 client->setPositionUnavailableError(message);
77 GeolocationClientMock* client = geolocationClient(document); local
78 if (!client)
86 GeolocationClientMock* client = geolocationClient(document); local
    [all...]
  /external/chromium_org/chromeos/dbus/
dbus_thread_manager.h 108 // Returns true if |client| is stubbed.
109 bool IsUsingStub(DBusClientBundle::DBusClientType client);
168 // Initialize global thread manager instance with all real dbus client
196 void SetBluetoothAdapterClient(scoped_ptr<BluetoothAdapterClient> client);
198 scoped_ptr<BluetoothAgentManagerClient> client);
199 void SetBluetoothDeviceClient(scoped_ptr<BluetoothDeviceClient> client);
201 scoped_ptr<BluetoothGattCharacteristicClient> client);
203 scoped_ptr<BluetoothGattDescriptorClient> client);
205 scoped_ptr<BluetoothGattManagerClient> client);
207 scoped_ptr<BluetoothGattServiceClient> client);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIController.cpp 44 MIDIController::MIDIController(PassOwnPtr<MIDIClient> client)
45 : m_client(client)
54 PassOwnPtrWillBeRawPtr<MIDIController> MIDIController::create(PassOwnPtr<MIDIClient> client)
56 return adoptPtrWillBeNoop(new MIDIController(client));
69 void provideMIDITo(LocalFrame& frame, PassOwnPtr<MIDIClient> client)
71 MIDIController::provideTo(frame, MIDIController::supplementName(), MIDIController::create(client));
  /external/chromium_org/ui/views/ime/
input_method_bridge.cc 27 const ui::TextInputClient* client) OVERRIDE {}
31 const ui::TextInputClient* client) OVERRIDE {}
33 const ui::TextInputClient* client) OVERRIDE {}
181 // to the text input |client|, which is e.g. views::Textfield.
184 TextInputClient* client = GetTextInputClient(); local
185 if (client)
186 client->SetCompositionText(composition);
190 TextInputClient* client = GetTextInputClient(); local
191 if (client)
192 client->ConfirmCompositionText()
196 TextInputClient* client = GetTextInputClient(); local
202 TextInputClient* client = GetTextInputClient(); local
208 TextInputClient* client = GetTextInputClient(); local
214 TextInputClient* client = GetTextInputClient(); local
220 TextInputClient* client = GetTextInputClient(); local
225 TextInputClient* client = GetTextInputClient(); local
230 TextInputClient* client = GetTextInputClient(); local
235 TextInputClient* client = GetTextInputClient(); local
245 TextInputClient* client = GetTextInputClient(); local
253 TextInputClient* client = GetTextInputClient(); local
258 TextInputClient* client = GetTextInputClient(); local
263 TextInputClient* client = GetTextInputClient(); local
268 TextInputClient* client = GetTextInputClient(); local
273 TextInputClient* client = GetTextInputClient(); local
278 TextInputClient* client = GetTextInputClient(); local
284 TextInputClient* client = GetTextInputClient(); local
289 TextInputClient* client = GetTextInputClient(); local
296 TextInputClient* client = GetTextInputClient(); local
302 TextInputClient* client = GetTextInputClient(); local
308 TextInputClient* client = GetTextInputClient(); local
    [all...]

Completed in 428 milliseconds

1 2 3 4 5 6 7 8 91011>>