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

Unified Diff: chrome/browser/ui/cocoa/website_settings/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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/website_settings/chooser_bubble_ui_cocoa.h
diff --git a/chrome/browser/ui/cocoa/website_settings/chooser_bubble_ui_cocoa.h b/chrome/browser/ui/cocoa/website_settings/chooser_bubble_ui_cocoa.h
deleted file mode 100644
index 5ce32622ed4206ef5eeeef6b47c477d59c1e252c..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/website_settings/chooser_bubble_ui_cocoa.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright 2015 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.
-
-#ifndef CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_
-#define CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_
-
-#import <Cocoa/Cocoa.h>
-
-#include <memory>
-
-#include "base/macros.h"
-#include "components/bubble/bubble_ui.h"
-
-class Browser;
-@class ChooserBubbleUiController;
-class ChooserController;
-
-// ChooserBubbleUiCocoa implements a chooser-based permission model.
-// It uses |NSTableView| to show a list of options for user to grant
-// permission. It can be used by the WebUSB or WebBluetooth APIs.
-// It is owned by the BubbleController, which is owned by the BubbleManager.
-class ChooserBubbleUiCocoa : public BubbleUi {
- public:
- ChooserBubbleUiCocoa(Browser* browser,
- std::unique_ptr<ChooserController> chooser_controller);
- ~ChooserBubbleUiCocoa() override;
-
- // BubbleUi:
- void Show(BubbleReference bubble_reference) override;
- void Close() override;
- void UpdateAnchorPosition() override;
-
- // Called when |chooser_bubble_ui_controller_| is closing.
- void OnBubbleClosing();
-
- private:
- Browser* browser_; // Weak.
- // Cocoa-side chooser bubble UI controller. Weak, as it will close itself.
- ChooserBubbleUiController* chooser_bubble_ui_controller_;
-
- DISALLOW_COPY_AND_ASSIGN(ChooserBubbleUiCocoa);
-};
-
-#endif // CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_CHOOSER_BUBBLE_UI_COCOA_H_

Powered by Google App Engine
This is Rietveld 408576698