| Index: chrome/browser/notifications/notification_options_menu_model.h
|
| diff --git a/chrome/browser/notifications/notification_options_menu_model.h b/chrome/browser/notifications/notification_options_menu_model.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..751c799ac21b86b5a07e6c1140c2ba640f2c3d85
|
| --- /dev/null
|
| +++ b/chrome/browser/notifications/notification_options_menu_model.h
|
| @@ -0,0 +1,30 @@
|
| +// Copyright (c) 2010 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_NOTIFICATIONS_NOTIFICATION_OPTIONS_MENU_MODEL_H_
|
| +#define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_OPTIONS_MENU_MODEL_H_
|
| +
|
| +#include "app/menus/simple_menu_model.h"
|
| +#include "chrome/browser/notifications/balloon.h"
|
| +
|
| +class NotificationOptionsMenuModel : public menus::SimpleMenuModel,
|
| + public menus::SimpleMenuModel::Delegate {
|
| + public:
|
| + explicit NotificationOptionsMenuModel(Balloon* balloon);
|
| + virtual ~NotificationOptionsMenuModel();
|
| +
|
| + // Overridden from menus::SimpleMenuModel::Delegate:
|
| + virtual bool IsCommandIdChecked(int command_id) const;
|
| + virtual bool IsCommandIdEnabled(int command_id) const;
|
| + virtual bool GetAcceleratorForCommandId(int command_id,
|
| + menus::Accelerator* accelerator);
|
| + virtual void ExecuteCommand(int command_id);
|
| +
|
| + private:
|
| + Balloon* balloon_; // Not owned.
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(NotificationOptionsMenuModel);
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_OPTIONS_MENU_MODEL_H_
|
|
|