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

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

Issue 10831025: mac: Remove now-unneeded includes of cocoa_protocols.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
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 #include <map> 5 #include <map>
6 6
7 #import <Cocoa/Cocoa.h> 7 #import <Cocoa/Cocoa.h>
8 8
9 #import "base/mac/cocoa_protocols.h"
10 #include "base/memory/scoped_nsobject.h" 9 #include "base/memory/scoped_nsobject.h"
11 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
12 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" 11 #import "chrome/browser/ui/cocoa/base_bubble_controller.h"
13 12
14 class ContentSettingBubbleModel; 13 class ContentSettingBubbleModel;
15 @class InfoBubbleView; 14 @class InfoBubbleView;
16 15
17 namespace content_setting_bubble { 16 namespace content_setting_bubble {
18 // For every "show popup" button, remember the index of the popup tab contents 17 // For every "show popup" button, remember the index of the popup tab contents
19 // it should open when clicked. 18 // it should open when clicked.
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // Callback for "info" link. 57 // Callback for "info" link.
59 - (IBAction)showMoreInfo:(id)sender; 58 - (IBAction)showMoreInfo:(id)sender;
60 59
61 // Callback for "load" (plug-ins, mixed script) button. 60 // Callback for "load" (plug-ins, mixed script) button.
62 - (IBAction)load:(id)sender; 61 - (IBAction)load:(id)sender;
63 62
64 // Callback for "Learn More" link. 63 // Callback for "Learn More" link.
65 - (IBAction)learnMoreLinkClicked:(id)sender; 64 - (IBAction)learnMoreLinkClicked:(id)sender;
66 65
67 @end 66 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698