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

Unified Diff: components/translate/core/browser/translate_driver.h

Issue 133273029: Move LanguageState to the translate component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comment + rebase Created 6 years, 11 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
Index: components/translate/core/browser/translate_driver.h
diff --git a/components/translate/core/browser/translate_driver.h b/components/translate/core/browser/translate_driver.h
new file mode 100644
index 0000000000000000000000000000000000000000..00328adc59cff9977448d27c01d760c1610c03fc
--- /dev/null
+++ b/components/translate/core/browser/translate_driver.h
@@ -0,0 +1,23 @@
+// Copyright 2014 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.
+
+#ifndef COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_DRIVER_H_
+#define COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_DRIVER_H_
+
+// Interface that allows Translate core code to interact with its driver (i.e.,
+// obtain information from it and give information to it). A concrete
+// implementation must be provided by the driver.
+class TranslateDriver {
+ public:
+ // Returns true if the current page was navigated through a link.
+ virtual bool IsLinkNavigation() = 0;
+
+ // Called when Translate is enabled or disabled.
+ virtual void OnTranslateEnabledChanged() = 0;
+
+ // Called when the page is "translated" state of the page changed.
+ virtual void OnIsPageTranslatedChanged() = 0;
+};
+
+#endif // COMPONENTS_TRANSLATE_CORE_BROWSER_TRANSLATE_DRIVER_H_
« no previous file with comments | « components/translate/core/browser/language_state_unittest.cc ('k') | tools/gn/secondary/components/translate/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698