| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef COMPONENTS_WEB_CONTENTS_DELEGATE_ANDROID_WEB_CONTENTS_DELEGATE_ANDROID_H
_ | 5 #ifndef COMPONENTS_WEB_CONTENTS_DELEGATE_ANDROID_WEB_CONTENTS_DELEGATE_ANDROID_H
_ |
| 6 #define COMPONENTS_WEB_CONTENTS_DELEGATE_ANDROID_WEB_CONTENTS_DELEGATE_ANDROID_H
_ | 6 #define COMPONENTS_WEB_CONTENTS_DELEGATE_ANDROID_WEB_CONTENTS_DELEGATE_ANDROID_H
_ |
| 7 | 7 |
| 8 #include "base/android/jni_helper.h" | 8 #include "base/android/jni_helper.h" |
| 9 #include "base/android/scoped_java_ref.h" | 9 #include "base/android/scoped_java_ref.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 // Binds this WebContentsDelegateAndroid to the passed WebContents instance, | 47 // Binds this WebContentsDelegateAndroid to the passed WebContents instance, |
| 48 // such that when that WebContents is destroyed, this | 48 // such that when that WebContents is destroyed, this |
| 49 // WebContentsDelegateAndroid instance will be destroyed too. | 49 // WebContentsDelegateAndroid instance will be destroyed too. |
| 50 void SetOwnerWebContents(content::WebContents* contents); | 50 void SetOwnerWebContents(content::WebContents* contents); |
| 51 | 51 |
| 52 // Overridden from WebContentsDelegate: | 52 // Overridden from WebContentsDelegate: |
| 53 virtual content::WebContents* OpenURLFromTab( | 53 virtual content::WebContents* OpenURLFromTab( |
| 54 content::WebContents* source, | 54 content::WebContents* source, |
| 55 const content::OpenURLParams& params) OVERRIDE; | 55 const content::OpenURLParams& params) OVERRIDE; |
| 56 virtual content::ColorChooser* OpenColorChooser(content::WebContents* source, | 56 virtual content::ColorChooser* OpenColorChooser( |
| 57 SkColor color) OVERRIDE; | 57 content::WebContents* source, |
| 58 SkColor color, |
| 59 const std::vector<content::ColorSuggestion>& suggestions) OVERRIDE; |
| 58 virtual void NavigationStateChanged(const content::WebContents* source, | 60 virtual void NavigationStateChanged(const content::WebContents* source, |
| 59 unsigned changed_flags) OVERRIDE; | 61 unsigned changed_flags) OVERRIDE; |
| 60 virtual void AddNewContents(content::WebContents* source, | 62 virtual void AddNewContents(content::WebContents* source, |
| 61 content::WebContents* new_contents, | 63 content::WebContents* new_contents, |
| 62 WindowOpenDisposition disposition, | 64 WindowOpenDisposition disposition, |
| 63 const gfx::Rect& initial_pos, | 65 const gfx::Rect& initial_pos, |
| 64 bool user_gesture, | 66 bool user_gesture, |
| 65 bool* was_blocked) OVERRIDE; | 67 bool* was_blocked) OVERRIDE; |
| 66 virtual void ActivateContents(content::WebContents* contents) OVERRIDE; | 68 virtual void ActivateContents(content::WebContents* contents) OVERRIDE; |
| 67 virtual void DeactivateContents(content::WebContents* contents) OVERRIDE; | 69 virtual void DeactivateContents(content::WebContents* contents) OVERRIDE; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 // strong reference to that object as long as they want to receive callbacks | 105 // strong reference to that object as long as they want to receive callbacks |
| 104 // on it. Using a weak ref here allows it to be correctly GCed. | 106 // on it. Using a weak ref here allows it to be correctly GCed. |
| 105 JavaObjectWeakGlobalRef weak_java_delegate_; | 107 JavaObjectWeakGlobalRef weak_java_delegate_; |
| 106 }; | 108 }; |
| 107 | 109 |
| 108 bool RegisterWebContentsDelegateAndroid(JNIEnv* env); | 110 bool RegisterWebContentsDelegateAndroid(JNIEnv* env); |
| 109 | 111 |
| 110 } // namespace web_contents_delegate_android | 112 } // namespace web_contents_delegate_android |
| 111 | 113 |
| 112 #endif // COMPONENTS_WEB_CONTENTS_DELEGATE_ANDROID_WEB_CONTENTS_DELEGATE_ANDROI
D_H_ | 114 #endif // COMPONENTS_WEB_CONTENTS_DELEGATE_ANDROID_WEB_CONTENTS_DELEGATE_ANDROI
D_H_ |
| OLD | NEW |