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

Side by Side Diff: chrome/browser/ui/cocoa/content_settings/content_setting_bubble_cocoa.mm

Issue 10821059: Add done-clicked notification to content settings bubble model. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/content_settings/content_setting_bubble_model.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "chrome/browser/ui/cocoa/content_settings/content_setting_bubble_cocoa.h " 5 #import "chrome/browser/ui/cocoa/content_settings/content_setting_bubble_cocoa.h "
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/sys_string_conversions.h" 9 #include "base/sys_string_conversions.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 479
480 - (IBAction)learnMoreLinkClicked:(id)sender { 480 - (IBAction)learnMoreLinkClicked:(id)sender {
481 contentSettingBubbleModel_->OnManageLinkClicked(); 481 contentSettingBubbleModel_->OnManageLinkClicked();
482 } 482 }
483 483
484 - (IBAction)manageBlocking:(id)sender { 484 - (IBAction)manageBlocking:(id)sender {
485 contentSettingBubbleModel_->OnManageLinkClicked(); 485 contentSettingBubbleModel_->OnManageLinkClicked();
486 } 486 }
487 487
488 - (IBAction)closeBubble:(id)sender { 488 - (IBAction)closeBubble:(id)sender {
489 contentSettingBubbleModel_->OnDoneClicked();
489 [self close]; 490 [self close];
490 } 491 }
491 492
492 @end // ContentSettingBubbleController 493 @end // ContentSettingBubbleController
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/content_settings/content_setting_bubble_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698