Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_ANDROID_SNACKBARS_TRANSLATE_SNACKBAR_H_ | |
| 6 #define CHROME_BROWSER_UI_ANDROID_SNACKBARS_TRANSLATE_SNACKBAR_H_ | |
| 7 | |
| 8 #include <stddef.h> | |
| 9 | |
| 10 #include "base/android/jni_android.h" | |
| 11 #include "base/android/scoped_java_ref.h" | |
| 12 #include "base/macros.h" | |
| 13 | |
| 14 class TranslateSnackbar { | |
|
gone
2017/04/30 02:09:44
You don't actually need this class for this CL, do
ramyasharma
2017/05/01 01:42:39
Done.
gone
2017/05/01 02:51:51
I meant that you didn't actually construct any ins
| |
| 15 private: | |
| 16 TranslateSnackbar(); | |
| 17 ~TranslateSnackbar(); | |
| 18 | |
| 19 DISALLOW_COPY_AND_ASSIGN(TranslateSnackbar); | |
| 20 }; | |
| 21 | |
| 22 // Registers the native methods through JNI. | |
| 23 bool RegisterTranslateSnackbar(JNIEnv* env); | |
| 24 | |
| 25 #endif // CHROME_BROWSER_UI_ANDROID_SNACKBARS_TRANSLATE_SNACKBAR_H | |
| OLD | NEW |