Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(990)

Side by Side Diff: blimp/client/app/android/blimp_client_session_android.h

Issue 2539183002: blimp: Cleanup class/struct forward declarations (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | blimp/client/app/session/blimp_client_session.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 BLIMP_CLIENT_APP_ANDROID_BLIMP_CLIENT_SESSION_ANDROID_H_ 5 #ifndef BLIMP_CLIENT_APP_ANDROID_BLIMP_CLIENT_SESSION_ANDROID_H_
6 #define BLIMP_CLIENT_APP_ANDROID_BLIMP_CLIENT_SESSION_ANDROID_H_ 6 #define BLIMP_CLIENT_APP_ANDROID_BLIMP_CLIENT_SESSION_ANDROID_H_
7 7
8 #include "base/android/jni_android.h" 8 #include "base/android/jni_android.h"
9 #include "base/android/jni_array.h" 9 #include "base/android/jni_array.h"
10 #include "base/android/scoped_java_ref.h" 10 #include "base/android/scoped_java_ref.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "blimp/client/app/session/blimp_client_session.h" 12 #include "blimp/client/app/session/blimp_client_session.h"
13 #include "blimp/client/core/contents/android/ime_helper_dialog.h" 13 #include "blimp/client/core/contents/android/ime_helper_dialog.h"
14 #include "blimp/client/public/session/assignment.h" 14 #include "blimp/client/public/session/assignment.h"
15 15
16 namespace blimp { 16 namespace blimp {
17 namespace client { 17 namespace client {
18 18
19 class AssignmentSource;
20
21 class BlimpClientSessionAndroid : public BlimpClientSession { 19 class BlimpClientSessionAndroid : public BlimpClientSession {
22 public: 20 public:
23 static bool RegisterJni(JNIEnv* env); 21 static bool RegisterJni(JNIEnv* env);
24 static BlimpClientSessionAndroid* FromJavaObject( 22 static BlimpClientSessionAndroid* FromJavaObject(
25 JNIEnv* env, 23 JNIEnv* env,
26 const base::android::JavaRef<jobject>& jobj); 24 const base::android::JavaRef<jobject>& jobj);
27 25
28 BlimpClientSessionAndroid( 26 BlimpClientSessionAndroid(
29 JNIEnv* env, 27 JNIEnv* env,
30 const base::android::JavaParamRef<jobject>& jobj, 28 const base::android::JavaParamRef<jobject>& jobj,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 // Reference to the Java object which owns this class. 61 // Reference to the Java object which owns this class.
64 base::android::ScopedJavaGlobalRef<jobject> java_obj_; 62 base::android::ScopedJavaGlobalRef<jobject> java_obj_;
65 63
66 DISALLOW_COPY_AND_ASSIGN(BlimpClientSessionAndroid); 64 DISALLOW_COPY_AND_ASSIGN(BlimpClientSessionAndroid);
67 }; 65 };
68 66
69 } // namespace client 67 } // namespace client
70 } // namespace blimp 68 } // namespace blimp
71 69
72 #endif // BLIMP_CLIENT_APP_ANDROID_BLIMP_CLIENT_SESSION_ANDROID_H_ 70 #endif // BLIMP_CLIENT_APP_ANDROID_BLIMP_CLIENT_SESSION_ANDROID_H_
OLDNEW
« no previous file with comments | « no previous file | blimp/client/app/session/blimp_client_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698