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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/remoting/host/
chromoting_host_context.h 31 scoped_refptr<AutoThreadTaskRunner> ui_task_runner);
34 scoped_refptr<AutoThreadTaskRunner> audio_task_runner();
39 scoped_refptr<AutoThreadTaskRunner> file_task_runner();
45 scoped_refptr<AutoThreadTaskRunner> input_task_runner();
50 scoped_refptr<AutoThreadTaskRunner> network_task_runner();
53 scoped_refptr<AutoThreadTaskRunner> ui_task_runner();
57 scoped_refptr<AutoThreadTaskRunner> video_capture_task_runner();
60 scoped_refptr<AutoThreadTaskRunner> video_encode_task_runner();
62 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter();
68 scoped_refptr<AutoThreadTaskRunner> audio_task_runner_
    [all...]
basic_desktop_environment.h 40 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
41 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
42 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner);
44 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner() const {
48 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner() const {
52 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner() const {
59 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_;
62 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner_;
65 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_;
74 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner
    [all...]
pairing_registry_delegate.h 25 scoped_refptr<protocol::PairingRegistry> CreatePairingRegistry(
26 scoped_refptr<base::SingleThreadTaskRunner> task_runner);
  /external/chromium_org/components/webdata/common/
web_data_service_test_util.h 32 scoped_refptr<WebDataService> fake_service,
33 scoped_refptr<autofill::AutofillWebDataService> fake_autofill,
34 scoped_refptr<TokenWebData> fake_token);
38 virtual scoped_refptr<autofill::AutofillWebDataService>
41 virtual scoped_refptr<TokenWebData> GetTokenWebData() OVERRIDE;
43 virtual scoped_refptr<WebDataService> GetWebData() OVERRIDE;
46 scoped_refptr<autofill::AutofillWebDataService> fake_autofill_web_data_;
47 scoped_refptr<TokenWebData> fake_token_web_data_;
48 scoped_refptr<WebDataService> fake_web_data_;
web_data_service_test_util.cc 24 scoped_refptr<WebDataService> fake_service,
25 scoped_refptr<AutofillWebDataService> fake_autofill,
26 scoped_refptr<TokenWebData> fake_token)
35 scoped_refptr<AutofillWebDataService>
40 scoped_refptr<TokenWebData> MockWebDataServiceWrapper::GetTokenWebData() {
44 scoped_refptr<WebDataService> MockWebDataServiceWrapper::GetWebData() {
  /external/chromium_org/content/browser/devtools/
renderer_overrides_handler.h 51 scoped_refptr<DevToolsProtocol::Response>
53 scoped_refptr<DevToolsProtocol::Command> command);
56 scoped_refptr<DevToolsProtocol::Response> ClearBrowserCache(
57 scoped_refptr<DevToolsProtocol::Command> command);
58 scoped_refptr<DevToolsProtocol::Response> ClearBrowserCookies(
59 scoped_refptr<DevToolsProtocol::Command> command);
62 scoped_refptr<DevToolsProtocol::Response> PageDisable(
63 scoped_refptr<DevToolsProtocol::Command> command);
64 scoped_refptr<DevToolsProtocol::Response> PageHandleJavaScriptDialog(
65 scoped_refptr<DevToolsProtocol::Command> command)
    [all...]
devtools_power_handler.h 26 scoped_refptr<DevToolsProtocol::Response> OnStart(
27 scoped_refptr<DevToolsProtocol::Command> command);
28 scoped_refptr<DevToolsProtocol::Response> OnEnd(
29 scoped_refptr<DevToolsProtocol::Command> command);
30 scoped_refptr<DevToolsProtocol::Response> OnCanProfilePower(
31 scoped_refptr<DevToolsProtocol::Command> command);
devtools_system_info_handler.h 20 scoped_refptr<DevToolsProtocol::Response> OnGetInfo(
21 scoped_refptr<DevToolsProtocol::Command> command);
  /external/chromium_org/base/
thread_task_runner_handle.h 22 static scoped_refptr<SingleThreadTaskRunner> Get();
31 const scoped_refptr<SingleThreadTaskRunner>& task_runner);
35 scoped_refptr<SingleThreadTaskRunner> task_runner_;
  /external/chromium_org/content/browser/indexed_db/
indexed_db_connection.h 18 IndexedDBConnection(scoped_refptr<IndexedDBDatabase> db,
19 scoped_refptr<IndexedDBDatabaseCallbacks> callbacks);
32 scoped_refptr<IndexedDBDatabase> database_;
36 scoped_refptr<IndexedDBDatabaseCallbacks> callbacks_;
indexed_db_pending_connection.h 21 scoped_refptr<IndexedDBCallbacks> callbacks_in,
22 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks_in,
27 scoped_refptr<IndexedDBCallbacks> callbacks;
28 scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks;
  /external/chromium_org/third_party/libjingle/source/talk/base/
scoped_ref_ptr.h 42 // scoped_refptr<MyFoo> foo = new MyFoo();
48 // scoped_refptr<MyFoo> foo = new MyFoo();
56 // The above examples show how scoped_refptr<T> acts like a pointer to T.
57 // Given two scoped_refptr<T> classes, it is also possible to exchange
61 // scoped_refptr<MyFoo> a = new MyFoo();
62 // scoped_refptr<MyFoo> b;
72 // scoped_refptr<MyFoo> a = new MyFoo();
73 // scoped_refptr<MyFoo> b;
88 class scoped_refptr { class in namespace:talk_base
90 scoped_refptr() : ptr_(NULL) function in class:talk_base::scoped_refptr
93 scoped_refptr(T* p) : ptr_(p) { function in class:talk_base::scoped_refptr
98 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:talk_base::scoped_refptr
104 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:talk_base::scoped_refptr
    [all...]
  /external/chromium_org/third_party/webrtc/base/
scoped_ref_ptr.h 25 // scoped_refptr<MyFoo> foo = new MyFoo();
31 // scoped_refptr<MyFoo> foo = new MyFoo();
39 // The above examples show how scoped_refptr<T> acts like a pointer to T.
40 // Given two scoped_refptr<T> classes, it is also possible to exchange
44 // scoped_refptr<MyFoo> a = new MyFoo();
45 // scoped_refptr<MyFoo> b;
55 // scoped_refptr<MyFoo> a = new MyFoo();
56 // scoped_refptr<MyFoo> b;
71 class scoped_refptr { class in namespace:rtc
73 scoped_refptr() : ptr_(NULL) function in class:rtc::scoped_refptr
76 scoped_refptr(T* p) : ptr_(p) { function in class:rtc::scoped_refptr
81 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:rtc::scoped_refptr
87 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:rtc::scoped_refptr
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
scoped_refptr.h 31 // scoped_refptr<MyFoo> foo = new MyFoo();
37 // scoped_refptr<MyFoo> foo = new MyFoo();
45 // The above examples show how scoped_refptr<T> acts like a pointer to T.
46 // Given two scoped_refptr<T> classes, it is also possible to exchange
50 // scoped_refptr<MyFoo> a = new MyFoo();
51 // scoped_refptr<MyFoo> b;
61 // scoped_refptr<MyFoo> a = new MyFoo();
62 // scoped_refptr<MyFoo> b;
69 class scoped_refptr { class in namespace:webrtc
71 scoped_refptr() : ptr_(NULL) function in class:webrtc::scoped_refptr
74 scoped_refptr(T* p) : ptr_(p) { function in class:webrtc::scoped_refptr
79 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:webrtc::scoped_refptr
85 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:webrtc::scoped_refptr
    [all...]
  /external/webrtc/src/system_wrappers/interface/
scoped_refptr.h 24 // scoped_refptr<MyFoo> foo = new MyFoo();
30 // scoped_refptr<MyFoo> foo = new MyFoo();
38 // The above examples show how scoped_refptr<T> acts like a pointer to T.
39 // Given two scoped_refptr<T> classes, it is also possible to exchange
43 // scoped_refptr<MyFoo> a = new MyFoo();
44 // scoped_refptr<MyFoo> b;
54 // scoped_refptr<MyFoo> a = new MyFoo();
55 // scoped_refptr<MyFoo> b;
62 class scoped_refptr { class in namespace:webrtc
64 scoped_refptr() : ptr_(NULL) function in class:webrtc::scoped_refptr
67 scoped_refptr(T* p) : ptr_(p) { function in class:webrtc::scoped_refptr
72 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:webrtc::scoped_refptr
78 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:webrtc::scoped_refptr
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_configuration.h 19 const scoped_refptr<base::SequencedTaskRunner>& ui_task_runner,
20 const scoped_refptr<base::SequencedTaskRunner>& file_task_runner);
  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_dummy_unittest.cc 10 scoped_refptr<Extension> extension =
16 scoped_refptr<Extension> extension =
  /external/chromium_org/components/enhanced_bookmarks/
image_store_util.h 18 // function. If encoding fails, then returned scoped_refptr has NULL.
19 scoped_refptr<base::RefCountedMemory> BytesForImage(const gfx::Image& image);
23 gfx::Image ImageForBytes(const scoped_refptr<base::RefCountedMemory>& data);
  /external/chromium_org/content/public/browser/android/
layer_tree_build_helper.h 21 virtual scoped_refptr<cc::Layer> GetLayerTree(
22 scoped_refptr<cc::Layer> content_root_layer) = 0;
  /external/chromium_org/device/bluetooth/
bluetooth_adapter_factory.h 18 typedef base::Callback<void(scoped_refptr<BluetoothAdapter> adapter)>
34 static void SetAdapterForTesting(scoped_refptr<BluetoothAdapter> adapter);
  /external/chromium_org/cc/test/
fake_video_frame_provider.h 20 virtual scoped_refptr<media::VideoFrame> GetCurrentFrame() OVERRIDE;
21 virtual void PutCurrentFrame(const scoped_refptr<media::VideoFrame>&)
26 void set_frame(const scoped_refptr<media::VideoFrame>& frame) {
31 scoped_refptr<media::VideoFrame> frame_;
  /external/chromium_org/chrome/browser/local_discovery/
service_discovery_client_mac_factory.h 14 static scoped_refptr<ServiceDiscoverySharedClient> CreateInstance();
  /external/chromium_org/chrome/service/cloud_print/
print_system_dummy.cc 14 scoped_refptr<PrintSystem> PrintSystem::CreateInstance(
  /external/chromium_org/components/gcm_driver/
fake_gcm_client_factory.h 25 const scoped_refptr<base::SequencedTaskRunner>& ui_thread,
26 const scoped_refptr<base::SequencedTaskRunner>& io_thread);
34 scoped_refptr<base::SequencedTaskRunner> ui_thread_;
35 scoped_refptr<base::SequencedTaskRunner> io_thread_;
  /external/chromium_org/media/cast/receiver/
video_decoder.h 27 typedef base::Callback<void(const scoped_refptr<VideoFrame>& frame,
30 VideoDecoder(const scoped_refptr<CastEnvironment>& cast_environment,
54 const scoped_refptr<CastEnvironment> cast_environment_;
55 scoped_refptr<ImplBase> impl_;

Completed in 853 milliseconds

1 2 3 4 5 6 7 8 91011>>