/external/chromium/chrome/browser/extensions/ |
extension_uninstall_dialog.h | 54 const ExtensionResource& resource,
|
/external/chromium/chrome/browser/task_manager/ |
task_manager.h | 38 // A resource represents one row in the task manager. 40 class Resource { 42 virtual ~Resource() {} 73 // Return extension associated with the resource, or NULL 85 // Whether this resource does report the network usage accurately. 105 // Returns true if this resource is not visible to the user because it lives 112 // to receive resource creation/termination notifications with a call to 113 // StartUpdating(). At that point, the resource provider should call 116 // The provider remains the owner of the resource objects and is responsible 124 // Should return the resource associated to the specified ids, or NULL i [all...] |
/external/chromium/chrome/browser/ui/gtk/infobars/ |
extension_infobar_gtk.h | 28 SkBitmap* image, const ExtensionResource& resource, int index);
|
/external/chromium_org/base/process/ |
process_posix.cc | 7 #include <sys/resource.h>
|
/external/chromium_org/cc/resources/ |
raster_worker_pool_unittest.cc | 27 const Resource* resource, 30 : internal::RasterWorkerPoolTask(resource, dependencies), 150 scoped_ptr<ScopedResource> resource( 152 resource->Allocate(size, GL_RGBA, ResourceProvider::TextureUsageAny); 153 const Resource* const_resource = resource.get(); 161 base::Passed(&resource), 166 virtual void OnTaskCompleted(scoped_ptr<ScopedResource> resource, 222 virtual void OnTaskCompleted(scoped_ptr<ScopedResource> resource, [all...] |
/external/chromium_org/chrome/browser/renderer_host/pepper/ |
pepper_flash_device_id_host.h | 29 PP_Resource resource);
|
/external/chromium_org/chrome/browser/safe_browsing/ |
client_side_detection_host.cc | 343 const SafeBrowsingUIManager::UnsafeResource& resource) { 349 resource.render_process_host_id && 351 resource.render_view_id && 352 (resource.threat_type == SB_THREAT_TYPE_URL_PHISHING || 353 resource.threat_type == SB_THREAT_TYPE_URL_MALWARE) && 357 // We also keep the resource around in order to be able to send the 359 unsafe_resource_.reset(new SafeBrowsingUIManager::UnsafeResource(resource)); 435 SafeBrowsingUIManager::UnsafeResource resource; local 436 resource.url = phishing_url; 437 resource.original_url = phishing_url [all...] |
/external/chromium_org/chrome/browser/task_manager/ |
child_process_resource_provider.cc | 22 #include "ui/base/resource/resource_bundle.h" 31 class ChildProcessResource : public Resource { 39 // Resource methods: 98 // Resource methods: 122 Resource::Type ChildProcessResource::GetType() const { 123 // Translate types to Resource::Type, since ChildProcessData's type 129 return Resource::PLUGIN; 131 return Resource::UTILITY; 133 return Resource::ZYGOTE; 135 return Resource::SANDBOX_HELPER 292 ChildProcessResource* resource = iter->second; local 309 ChildProcessResource* resource = local [all...] |
/external/chromium_org/chrome/renderer/pepper/ |
pepper_extensions_common_host.cc | 30 PP_Resource resource, 32 : ResourceHost(host->GetPpapiHost(), instance, resource), 45 PP_Resource resource) { 57 return new PepperExtensionsCommonHost(host, instance, resource, dispatcher);
|
pepper_flash_font_file_host.h | 30 PP_Resource resource,
|
/external/chromium_org/content/browser/renderer_host/pepper/ |
pepper_printing_host.h | 23 PP_Resource resource,
|
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/ |
ps_event.h | 39 /* From HandleInputEvent, conatins an input resource. */ 45 /* From DidChangeView, contains a view resource */ 51 /* When the 3D context is lost, no resource. */ 89 void PSEventPostResource(PSEventType type, PP_Resource resource);
|
/external/chromium_org/ppapi/c/dev/ |
ppb_video_decoder_dev.h | 37 * - Use Create() to create & configure a new PPB_VideoDecoder_Dev resource. 58 * |context| a PPB_Graphics3D resource in which decoding will happen. 67 * Tests whether |resource| is a video decoder created through Create 71 * |resource| is handle to resource to test. 75 PP_Bool (*IsVideoDecoder)(PP_Resource resource); 80 * |video_decoder| is the previously created handle to the decoder resource. 99 * |video_decoder| is the previously created handle to the decoder resource. 114 * |video_decoder| is the previously created handle to the decoder resource. 126 * |video_decoder| is the previously created handle to the decoder resource [all...] |
/external/chromium_org/ppapi/c/ |
ppb_host_resolver.h | 87 * Creates a host resolver resource. 97 * Determines if a given resource is a host resolver. 99 * @param[in] resource A <code>PP_Resource</code> to check. 102 * <code>PPB_HostResolver</code> resource; <code>PP_FALSE</code> otherwise. 104 PP_Bool (*IsHostResolver)(PP_Resource resource); 161 * @return A <code>PPB_NetAddress</code> resource on success; 0 if there is a
|
/external/chromium_org/ppapi/c/private/ |
ppb_host_resolver_private.h | 75 * Allocates a Host Resolver resource. 79 * Determines if a given resource is a Host Resolver. 81 PP_Bool (*IsHostResolver)(PP_Resource resource); 104 * resource is not a Host Resolver or |index| exceeds number of
|
/external/chromium_org/ppapi/cpp/dev/ |
resource_array_dev.h | 11 #include "ppapi/cpp/resource.h" 17 class ResourceArray_Dev : public Resource { 36 ResourceArray_Dev(PassRef, PP_Resource resource); 53 // which take a PPB_ResourceArray_Dev resource as output parameter, and
|
scrollbar_dev.h | 21 explicit Scrollbar_Dev(PP_Resource resource);
|
video_capture_dev.h | 13 #include "ppapi/cpp/resource.h" 19 class VideoCapture_Dev : public Resource { 22 VideoCapture_Dev(PP_Resource resource);
|
video_decoder_dev.h | 13 #include "ppapi/cpp/resource.h" 24 class VideoDecoder_Dev : public Resource { 30 explicit VideoDecoder_Dev(PP_Resource resource);
|
/external/chromium_org/ppapi/cpp/private/ |
network_list_private.h | 13 #include "ppapi/cpp/resource.h" 17 class NetworkListPrivate : public Resource { 20 NetworkListPrivate(PassRef, PP_Resource resource);
|
/external/chromium_org/ppapi/cpp/ |
url_loader.h | 9 #include "ppapi/cpp/resource.h" 23 class URLLoader : public Resource { 32 /// @param[in] resource A <code>PP_Resource</code> corresponding to a 33 /// <code>URLLoader</code> resource. 34 explicit URLLoader(PP_Resource resource); 39 /// @param[in] instance The instance with which this resource will be 119 /// object if the loader is not a valid resource or if Open() has not been
|
url_response_info.h | 9 #include "ppapi/cpp/resource.h" 19 class URLResponseInfo : public Resource { 22 /// resource. 28 /// @param[in] resource A <code>PP_Resource</code> corresponding to a 29 /// resource. 30 URLResponseInfo(PassRef, PP_Resource resource);
|
/external/chromium_org/ppapi/examples/enumerate_devices/ |
enumerate_devices.cc | 49 virtual void OnDeviceInfo(PP_Resource resource, 52 virtual void OnStatus(PP_Resource resource, uint32_t status) {} 53 virtual void OnError(PP_Resource resource, uint32_t error) {} 54 virtual void OnBufferReady(PP_Resource resource, uint32_t buffer) {}
|
/external/chromium_org/ppapi/proxy/ |
ppb_buffer_proxy.cc | 25 Buffer::Buffer(const HostResource& resource, 28 : Resource(OBJECT_IS_PROXY, resource), 94 const HostResource& resource, 97 return (new Buffer(resource, shm_handle, size))->GetReference();
|
ppb_flash_message_loop_proxy.h | 41 void OnMsgCreate(PP_Instance instance, ppapi::HostResource* resource);
|