| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_UI_ANDROID_VALIDATION_MESSAGE_BUBBLE_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_UI_ANDROID_VALIDATION_MESSAGE_BUBBLE_ANDROID_H_ |
| 6 #define CHROME_BROWSER_UI_ANDROID_VALIDATION_MESSAGE_BUBBLE_ANDROID_H_ | 6 #define CHROME_BROWSER_UI_ANDROID_VALIDATION_MESSAGE_BUBBLE_ANDROID_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 | 9 |
| 10 #include "base/android/scoped_java_ref.h" | 10 #include "base/android/scoped_java_ref.h" |
| 11 #include "base/string16.h" | 11 #include "base/strings/string16.h" |
| 12 #include "chrome/browser/ui/validation_message_bubble.h" | 12 #include "chrome/browser/ui/validation_message_bubble.h" |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 class RenderWidgetHost; | 15 class RenderWidgetHost; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace gfx { | 18 namespace gfx { |
| 19 class Rect; | 19 class Rect; |
| 20 } | 20 } |
| 21 | 21 |
| 22 // An implementation of ValidationMessageBubble for Android. This class is a | 22 // An implementation of ValidationMessageBubble for Android. This class is a |
| 23 // bridge to a Java implementation. | 23 // bridge to a Java implementation. |
| 24 class ValidationMessageBubbleAndroid : public chrome::ValidationMessageBubble { | 24 class ValidationMessageBubbleAndroid : public chrome::ValidationMessageBubble { |
| 25 public: | 25 public: |
| 26 ValidationMessageBubbleAndroid(content::RenderWidgetHost* widget_host, | 26 ValidationMessageBubbleAndroid(content::RenderWidgetHost* widget_host, |
| 27 const gfx::Rect& anchor_in_screen, | 27 const gfx::Rect& anchor_in_screen, |
| 28 const string16& main_text, | 28 const string16& main_text, |
| 29 const string16& sub_text); | 29 const string16& sub_text); |
| 30 virtual ~ValidationMessageBubbleAndroid(); | 30 virtual ~ValidationMessageBubbleAndroid(); |
| 31 virtual void MoveOnAnchor(content::RenderWidgetHost* widget_host, | 31 virtual void MoveOnAnchor(content::RenderWidgetHost* widget_host, |
| 32 const gfx::Rect& anchor_in_screen); | 32 const gfx::Rect& anchor_in_screen); |
| 33 | 33 |
| 34 static bool Register(JNIEnv* env); | 34 static bool Register(JNIEnv* env); |
| 35 | 35 |
| 36 private: | 36 private: |
| 37 base::android::ScopedJavaGlobalRef<jobject> java_validation_message_bubble_; | 37 base::android::ScopedJavaGlobalRef<jobject> java_validation_message_bubble_; |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 #endif // CHROME_BROWSER_UI_ANDROID_VALIDATION_MESSAGE_BUBBLE_ANDROID_H_ | 40 #endif // CHROME_BROWSER_UI_ANDROID_VALIDATION_MESSAGE_BUBBLE_ANDROID_H_ |
| OLD | NEW |