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

Unified Diff: chrome/browser/ui/views/infobars/translate_language_menu_model.h

Issue 325483003: Remove unused Views Translate InfoBar code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove test-only infobar toggle; no-op tests for incompatible UX. Created 6 years, 6 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: chrome/browser/ui/views/infobars/translate_language_menu_model.h
diff --git a/chrome/browser/ui/views/infobars/translate_language_menu_model.h b/chrome/browser/ui/views/infobars/translate_language_menu_model.h
deleted file mode 100644
index 078a1400d46f91a64073fb545611593968ff2685..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/views/infobars/translate_language_menu_model.h
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright (c) 2011 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 CHROME_BROWSER_UI_VIEWS_INFOBARS_TRANSLATE_LANGUAGE_MENU_MODEL_H_
-#define CHROME_BROWSER_UI_VIEWS_INFOBARS_TRANSLATE_LANGUAGE_MENU_MODEL_H_
-
-#include "ui/base/models/simple_menu_model.h"
-
-class TranslateInfoBarBase;
-class TranslateInfoBarDelegate;
-
-namespace views {
-class MenuButton;
-}
-
-// A menu model that builds the contents of the language menus in the translate
-// infobar. This menu has only one level (no submenus).
-class TranslateLanguageMenuModel : public ui::SimpleMenuModel,
- public ui::SimpleMenuModel::Delegate {
- public:
- enum LanguageType {
- ORIGINAL,
- TARGET
- };
-
- TranslateLanguageMenuModel(LanguageType language_type,
- TranslateInfoBarDelegate* infobar_delegate,
- TranslateInfoBarBase* infobar,
- views::MenuButton* button,
- bool translate_on_change);
- virtual ~TranslateLanguageMenuModel();
-
- // ui::SimpleMenuModel::Delegate implementation:
- virtual bool IsCommandIdChecked(int command_id) const OVERRIDE;
- virtual bool IsCommandIdEnabled(int command_id) const OVERRIDE;
- virtual bool GetAcceleratorForCommandId(
- int command_id,
- ui::Accelerator* accelerator) OVERRIDE;
- virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE;
-
- private:
- size_t GetLanguageIndex() const;
-
- LanguageType language_type_;
- TranslateInfoBarDelegate* infobar_delegate_;
- TranslateInfoBarBase* infobar_;
- views::MenuButton* button_;
- const bool translate_on_change_;
-
- DISALLOW_COPY_AND_ASSIGN(TranslateLanguageMenuModel);
-};
-
-#endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_TRANSLATE_LANGUAGE_MENU_MODEL_H_

Powered by Google App Engine
This is Rietveld 408576698