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

Unified Diff: chrome/browser/translate/options_menu_model.h

Issue 284313008: Move TranslateInfoBarDelegate and OptionsMenuModel to the Translate component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + review comments Created 6 years, 7 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/policy/policy_browsertest.cc ('k') | chrome/browser/translate/options_menu_model.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/translate/options_menu_model.h
diff --git a/chrome/browser/translate/options_menu_model.h b/chrome/browser/translate/options_menu_model.h
deleted file mode 100644
index f178ca1a7902140245a7aaa9978bc33ec7b27bea..0000000000000000000000000000000000000000
--- a/chrome/browser/translate/options_menu_model.h
+++ /dev/null
@@ -1,34 +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_TRANSLATE_OPTIONS_MENU_MODEL_H_
-#define CHROME_BROWSER_TRANSLATE_OPTIONS_MENU_MODEL_H_
-
-#include "ui/base/models/simple_menu_model.h"
-
-class TranslateInfoBarDelegate;
-
-// A menu model that builds the contents of the options menu in the translate
-// infobar. This menu has only one level (no submenus).
-class OptionsMenuModel : public ui::SimpleMenuModel,
- public ui::SimpleMenuModel::Delegate {
- public:
- explicit OptionsMenuModel(TranslateInfoBarDelegate* translate_delegate);
- virtual ~OptionsMenuModel();
-
- // 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:
- TranslateInfoBarDelegate* translate_infobar_delegate_;
-
- DISALLOW_COPY_AND_ASSIGN(OptionsMenuModel);
-};
-
-#endif // CHROME_BROWSER_TRANSLATE_OPTIONS_MENU_MODEL_H_
« no previous file with comments | « chrome/browser/policy/policy_browsertest.cc ('k') | chrome/browser/translate/options_menu_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698