summaryrefslogtreecommitdiffstats
path: root/chromium/ppapi/shared_impl/host_resource.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ppapi/shared_impl/host_resource.h')
-rw-r--r--chromium/ppapi/shared_impl/host_resource.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/chromium/ppapi/shared_impl/host_resource.h b/chromium/ppapi/shared_impl/host_resource.h
index 6001bb0fe5a..6770a52005e 100644
--- a/chromium/ppapi/shared_impl/host_resource.h
+++ b/chromium/ppapi/shared_impl/host_resource.h
@@ -39,9 +39,7 @@ class PPAPI_SHARED_EXPORT HostResource {
public:
HostResource();
- bool is_null() const {
- return !host_resource_;
- }
+ bool is_null() const { return !host_resource_; }
// Some resources are plugin-side only and don't have a corresponding
// resource in the host. Yet these resources still need an instance to be
@@ -55,9 +53,7 @@ class PPAPI_SHARED_EXPORT HostResource {
// DO NOT CALL THESE FUNCTIONS IN THE PLUGIN SIDE OF THE PROXY. The values
// will be invalid. See the class comment above.
void SetHostResource(PP_Instance instance, PP_Resource resource);
- PP_Resource host_resource() const {
- return host_resource_;
- }
+ PP_Resource host_resource() const { return host_resource_; }
PP_Instance instance() const { return instance_; }