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

Side by Side Diff: chrome/browser/ui/cocoa/permission_bubble/chooser_bubble_ui_cocoa.h

Issue 2748443005: Rename website_settings UI folders to permission_bubble. (Closed)
Patch Set: Rebase. Created 3 years, 9 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_PERMISSION_BUBBLE_CHOOSER_BUBBLE_UI_COCOA_H_
6 #define CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ 6 #define CHROME_BROWSER_UI_COCOA_PERMISSION_BUBBLE_CHOOSER_BUBBLE_UI_COCOA_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "components/bubble/bubble_ui.h" 13 #include "components/bubble/bubble_ui.h"
14 14
15 class Browser; 15 class Browser;
16 @class ChooserBubbleUiController; 16 @class ChooserBubbleUiController;
(...skipping 18 matching lines...) Expand all
35 void OnBubbleClosing(); 35 void OnBubbleClosing();
36 36
37 private: 37 private:
38 Browser* browser_; // Weak. 38 Browser* browser_; // Weak.
39 // Cocoa-side chooser bubble UI controller. Weak, as it will close itself. 39 // Cocoa-side chooser bubble UI controller. Weak, as it will close itself.
40 ChooserBubbleUiController* chooser_bubble_ui_controller_; 40 ChooserBubbleUiController* chooser_bubble_ui_controller_;
41 41
42 DISALLOW_COPY_AND_ASSIGN(ChooserBubbleUiCocoa); 42 DISALLOW_COPY_AND_ASSIGN(ChooserBubbleUiCocoa);
43 }; 43 };
44 44
45 #endif // CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_ 45 #endif // CHROME_BROWSER_UI_COCOA_PERMISSION_BUBBLE_CHOOSER_BUBBLE_UI_COCOA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698