OLD | NEW |
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 Loading... |
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 |
OLD | NEW |