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

Unified Diff: chrome/browser/ui/website_settings/chooser_bubble_delegate.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/website_settings/chooser_bubble_delegate.h
diff --git a/chrome/browser/ui/website_settings/chooser_bubble_delegate.h b/chrome/browser/ui/website_settings/chooser_bubble_delegate.h
deleted file mode 100644
index e521b54993026377f01606acbb98ea2a8944f15e..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/website_settings/chooser_bubble_delegate.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_WEBSITE_SETTINGS_CHOOSER_BUBBLE_DELEGATE_H_
-#define CHROME_BROWSER_UI_WEBSITE_SETTINGS_CHOOSER_BUBBLE_DELEGATE_H_
-
-#include "base/macros.h"
-#include "components/bubble/bubble_delegate.h"
-
-class Browser;
-class ChooserController;
-
-namespace content {
-class RenderFrameHost;
-}
-
-// ChooserBubbleDelegate overrides GetName() to identify the bubble
-// you define for collecting metrics. Create an instance of this
-// class and pass it to BubbleManager::ShowBubble() to show the bubble.
-class ChooserBubbleDelegate : public BubbleDelegate {
- public:
- ChooserBubbleDelegate(content::RenderFrameHost* owner,
- std::unique_ptr<ChooserController> chooser_controller);
- ~ChooserBubbleDelegate() override;
-
- // BubbleDelegate:
- std::string GetName() const override;
- std::unique_ptr<BubbleUi> BuildBubbleUi() override;
- const content::RenderFrameHost* OwningFrame() const override;
-
- private:
- const content::RenderFrameHost* const owning_frame_;
- Browser* browser_;
- // |chooser_controller_| is not owned by this class, it is owned by
- // DeviceChooserContentView[Cocoa].
- // This field only temporarily owns the ChooserController. It is moved
- // into the DeviceChooserContentView[Cocoa] when BuildBubbleUi() is called
- // and the bubble is shown.
- std::unique_ptr<ChooserController> chooser_controller_;
-
- DISALLOW_COPY_AND_ASSIGN(ChooserBubbleDelegate);
-};
-
-#endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_CHOOSER_BUBBLE_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698