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

Unified Diff: chrome/browser/notifications/notification_options_menu_model.cc

Issue 3013012: Revert 52859. (Closed)
Patch Set: Created 10 years, 5 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/notifications/notification_options_menu_model.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/notifications/notification_options_menu_model.cc
diff --git a/chrome/browser/notifications/notification_options_menu_model.cc b/chrome/browser/notifications/notification_options_menu_model.cc
deleted file mode 100644
index 7026d803bd48e12dc34836703e0094ce11e22e05..0000000000000000000000000000000000000000
--- a/chrome/browser/notifications/notification_options_menu_model.cc
+++ /dev/null
@@ -1,57 +0,0 @@
-// 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.
-
-#include "chrome/browser/notifications/notification_options_menu_model.h"
-
-#include "app/l10n_util.h"
-#include "base/logging.h"
-#include "base/utf_string_conversions.h"
-#include "chrome/browser/notifications/desktop_notification_service.h"
-#include "chrome/browser/profile.h"
-#include "grit/generated_resources.h"
-
-static const int kRevokePermissionCommand = 0;
-
-NotificationOptionsMenuModel::NotificationOptionsMenuModel(Balloon* balloon)
- : menus::SimpleMenuModel(this),
- balloon_(balloon) {
- const string16 label_text = WideToUTF16Hack(l10n_util::GetStringF(
- IDS_NOTIFICATION_BALLOON_REVOKE_MESSAGE,
- balloon->notification().display_source()));
- AddItem(kRevokePermissionCommand, label_text);
-}
-
-NotificationOptionsMenuModel::~NotificationOptionsMenuModel() {
-}
-
-bool NotificationOptionsMenuModel::IsCommandIdChecked(int /* command_id */)
- const {
- // Nothing in the menu is checked.
- return false;
-}
-
-bool NotificationOptionsMenuModel::IsCommandIdEnabled(int /* command_id */)
- const {
- // All the menu options are always enabled.
- return true;
-}
-
-bool NotificationOptionsMenuModel::GetAcceleratorForCommandId(
- int /* command_id */, menus::Accelerator* /* accelerator */) {
- // Current no accelerators.
- return false;
-}
-
-void NotificationOptionsMenuModel::ExecuteCommand(int command_id) {
- DesktopNotificationService* service =
- balloon_->profile()->GetDesktopNotificationService();
- switch (command_id) {
- case kRevokePermissionCommand:
- service->DenyPermission(balloon_->notification().origin_url());
- break;
- default:
- NOTREACHED();
- break;
- }
-}
« no previous file with comments | « chrome/browser/notifications/notification_options_menu_model.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698