| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/renderer_host/java/gin_java_bound_object_delegate.h" | 5 #include "content/browser/android/java/gin_java_bound_object_delegate.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 GinJavaBoundObjectDelegate::GinJavaBoundObjectDelegate( | 9 GinJavaBoundObjectDelegate::GinJavaBoundObjectDelegate( |
| 10 scoped_refptr<GinJavaBoundObject> object) | 10 scoped_refptr<GinJavaBoundObject> object) |
| 11 : object_(object) { | 11 : object_(object) { |
| 12 } | 12 } |
| 13 | 13 |
| 14 GinJavaBoundObjectDelegate::~GinJavaBoundObjectDelegate() { | 14 GinJavaBoundObjectDelegate::~GinJavaBoundObjectDelegate() { |
| 15 } | 15 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 34 const JavaMethod* method) { | 34 const JavaMethod* method) { |
| 35 return object_->IsObjectGetClassMethod(method); | 35 return object_->IsObjectGetClassMethod(method); |
| 36 } | 36 } |
| 37 | 37 |
| 38 const base::android::JavaRef<jclass>& | 38 const base::android::JavaRef<jclass>& |
| 39 GinJavaBoundObjectDelegate::GetSafeAnnotationClass() { | 39 GinJavaBoundObjectDelegate::GetSafeAnnotationClass() { |
| 40 return object_->GetSafeAnnotationClass(); | 40 return object_->GetSafeAnnotationClass(); |
| 41 } | 41 } |
| 42 | 42 |
| 43 } // namespace content | 43 } // namespace content |
| OLD | NEW |