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 #ifndef CHROMECAST_SHELL_BROWSER_ANDROID_CAST_WINDOW_ANDROID_H_ | 5 #ifndef CHROMECAST_SHELL_BROWSER_ANDROID_CAST_WINDOW_ANDROID_H_ |
6 #define CHROMECAST_SHELL_BROWSER_ANDROID_CAST_WINDOW_ANDROID_H_ | 6 #define CHROMECAST_SHELL_BROWSER_ANDROID_CAST_WINDOW_ANDROID_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
43 const GURL& url); | 43 const GURL& url); |
44 | 44 |
45 virtual ~CastWindowAndroid(); | 45 virtual ~CastWindowAndroid(); |
46 | 46 |
47 void LoadURL(const GURL& url); | 47 void LoadURL(const GURL& url); |
48 void Close(); | 48 void Close(); |
49 | 49 |
50 // Registers the JNI methods for CastWindowAndroid. | 50 // Registers the JNI methods for CastWindowAndroid. |
51 static bool RegisterJni(JNIEnv* env); | 51 static bool RegisterJni(JNIEnv* env); |
52 | 52 |
53 // WebContentsDelegate implementation. | 53 // content::WebContentsDelegate |
lcwu1
2014/09/16 22:46:50
I thought our convention is to use "content::WebCo
gunsch
2014/09/16 23:02:36
Done.
lcwu1
2014/09/16 23:26:06
Sorry again. :-) I meant to say "content::WebConte
| |
54 virtual void AddNewContents(content::WebContents* source, | 54 virtual void AddNewContents(content::WebContents* source, |
55 content::WebContents* new_contents, | 55 content::WebContents* new_contents, |
56 WindowOpenDisposition disposition, | 56 WindowOpenDisposition disposition, |
57 const gfx::Rect& initial_pos, | 57 const gfx::Rect& initial_pos, |
58 bool user_gesture, | 58 bool user_gesture, |
59 bool* was_blocked) OVERRIDE; | 59 bool* was_blocked) OVERRIDE; |
60 virtual void CloseContents(content::WebContents* source) OVERRIDE; | 60 virtual void CloseContents(content::WebContents* source) OVERRIDE; |
61 virtual bool CanOverscrollContent() const OVERRIDE; | 61 virtual bool CanOverscrollContent() const OVERRIDE; |
62 virtual bool AddMessageToConsole(content::WebContents* source, | 62 virtual bool AddMessageToConsole(content::WebContents* source, |
63 int32 level, | 63 int32 level, |
64 const base::string16& message, | 64 const base::string16& message, |
65 int32 line_no, | 65 int32 line_no, |
66 const base::string16& source_id) OVERRIDE; | 66 const base::string16& source_id) OVERRIDE; |
67 virtual void ActivateContents(content::WebContents* contents) OVERRIDE; | 67 virtual void ActivateContents(content::WebContents* contents) OVERRIDE; |
68 virtual void DeactivateContents(content::WebContents* contents) OVERRIDE; | 68 virtual void DeactivateContents(content::WebContents* contents) OVERRIDE; |
69 | 69 |
70 // content::WebContentsObserver | |
lcwu1
2014/09/16 22:46:50
Ditto.
gunsch
2014/09/16 23:02:36
Done.
| |
71 virtual void RenderProcessGone(base::TerminationStatus status) OVERRIDE; | |
72 | |
70 private: | 73 private: |
71 explicit CastWindowAndroid(content::WebContents* web_contents); | 74 explicit CastWindowAndroid(content::WebContents* web_contents); |
72 | 75 |
73 // Helper to create a new CastWindowAndroid given a newly created WebContents. | 76 // Helper to create a new CastWindowAndroid given a newly created WebContents. |
74 static CastWindowAndroid* CreateCastWindowAndroid( | 77 static CastWindowAndroid* CreateCastWindowAndroid( |
75 content::WebContents* web_contents, | 78 content::WebContents* web_contents, |
76 const gfx::Size& initial_size); | 79 const gfx::Size& initial_size); |
77 | 80 |
78 base::android::ScopedJavaGlobalRef<jobject> java_object_; | 81 base::android::ScopedJavaGlobalRef<jobject> java_object_; |
79 scoped_ptr<content::WebContents> web_contents_; | 82 scoped_ptr<content::WebContents> web_contents_; |
80 | 83 |
81 DISALLOW_COPY_AND_ASSIGN(CastWindowAndroid); | 84 DISALLOW_COPY_AND_ASSIGN(CastWindowAndroid); |
82 }; | 85 }; |
83 | 86 |
84 } // namespace shell | 87 } // namespace shell |
85 } // namespace chromecast | 88 } // namespace chromecast |
86 | 89 |
87 #endif // CHROMECAST_SHELL_BROWSER_ANDROID_CAST_WINDOW_ANDROID_H_ | 90 #endif // CHROMECAST_SHELL_BROWSER_ANDROID_CAST_WINDOW_ANDROID_H_ |
OLD | NEW |