| 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_
|
|
|