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

Unified Diff: chrome/browser/ui/android/snackbars/translate_snackbar.cc

Issue 2840933003: Shows snackbar in translate infobar, after certain user actions. (Closed)
Patch Set: Created 3 years, 8 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/android/snackbars/translate_snackbar.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/android/snackbars/translate_snackbar.cc
diff --git a/chrome/browser/ui/android/snackbars/translate_snackbar.cc b/chrome/browser/ui/android/snackbars/translate_snackbar.cc
new file mode 100644
index 0000000000000000000000000000000000000000..fd7c8b123f0ef88d467572fe6e33729221f9ee58
--- /dev/null
+++ b/chrome/browser/ui/android/snackbars/translate_snackbar.cc
@@ -0,0 +1,25 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/ui/android/snackbars/translate_snackbar.h"
+
+#include "base/memory/ptr_util.h"
+#include "jni/TranslateSnackbarController_jni.h"
+
+TranslateSnackbar::TranslateSnackbar(int snackbar_type) {
+ type_ = snackbar_type;
+}
+
+void TranslateSnackbar::ToggleTranslateOption(
+ JNIEnv* env,
+ const base::android::JavaParamRef<jobject>& obj) {
+ // TODO(ramyasharma): Implement.
+}
+
+// Native JNI methods -------------------------------------------------------
+
+// static
+bool RegisterTranslateSnackbar(JNIEnv* env) {
+ return RegisterNativesImpl(env);
+}
« no previous file with comments | « chrome/browser/ui/android/snackbars/translate_snackbar.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698