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

Unified Diff: chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_cocoa.h

Issue 1411733009: Bulk rename files in chrome/browser/ui/cocoa/passwords/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix-federation
Patch Set: Created 5 years, 2 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/passwords/manage_passwords_bubble_cocoa.h
diff --git a/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_cocoa.h b/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_cocoa.h
deleted file mode 100644
index 0c2a733c02436dd2eccc4825cf8be9eb85954188..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_cocoa.h
+++ /dev/null
@@ -1,77 +0,0 @@
-// Copyright 2014 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_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_COCOA_H_
-#define CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_COCOA_H_
-
-#import <Cocoa/Cocoa.h>
-
-#include "base/mac/scoped_nsobject.h"
-#import "chrome/browser/ui/passwords/manage_passwords_bubble_model.h"
-
-namespace content {
-class WebContents;
-}
-
-@class ManagePasswordsBubbleController;
-@class ManagePasswordsBubbleCocoaNotificationBridge;
-class ManagePasswordsIcon;
-
-// Cocoa implementation of the platform-independent password bubble interface.
-class ManagePasswordsBubbleCocoa {
- public:
- // Creates and shows the bubble, which owns itself. Does nothing if the bubble
- // is already shown.
- static void Show(content::WebContents* webContents, bool user_action);
-
- // Closes and deletes the bubble.
- void Close();
-
- // Sets the location bar icon that should be updated with state changes.
- void SetIcon(ManagePasswordsIcon* icon) { icon_ = icon; }
-
- // Accessor for the global bubble.
- static ManagePasswordsBubbleCocoa* instance() { return bubble_; }
-
- private:
- friend class ManagePasswordsBubbleCocoaTest;
- friend class ManagePasswordsBubbleTest;
-
- // Instance-specific logic. Clients should use the static interface.
- ManagePasswordsBubbleCocoa(
- content::WebContents* webContents,
- ManagePasswordsBubbleModel::DisplayReason displayReason,
- ManagePasswordsIcon* icon);
- ~ManagePasswordsBubbleCocoa();
- void Show(bool user_action);
-
- // Cleans up state and deletes itself. Called when the bubble is closed.
- void OnClose();
-
- ManagePasswordsBubbleModel model_;
-
- // The location bar icon corresponding to the bubble.
- ManagePasswordsIcon* icon_;
-
- // Whether there is currently a close operation taking place. Prevents
- // multiple attempts to close the window.
- bool closing_;
-
- // The view controller for the bubble. Weak; owns itself. Must be nilled
- // after the bubble is closed.
- ManagePasswordsBubbleController* controller_;
-
- // WebContents on which the bubble should be displayed. Weak.
- content::WebContents* webContents_;
-
- // Listens for NSNotificationCenter notifications.
- base::scoped_nsobject<ManagePasswordsBubbleCocoaNotificationBridge> bridge_;
-
- // The global bubble instance. Deleted by Close().
- static ManagePasswordsBubbleCocoa* bubble_;
-
- DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleCocoa);
-};
-
-#endif // CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_COCOA_H_

Powered by Google App Engine
This is Rietveld 408576698