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

Side by Side Diff: chrome/browser/ui/cocoa/autofill/password_generation_popup_view_bridge.h

Issue 342833002: [Password Generation] Update Aura UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Coments Created 6 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H _ 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H _
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H _ 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDGE_H _
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 14 matching lines...) Expand all
25 public: 25 public:
26 explicit PasswordGenerationPopupViewBridge( 26 explicit PasswordGenerationPopupViewBridge(
27 PasswordGenerationPopupController* controller); 27 PasswordGenerationPopupController* controller);
28 28
29 private: 29 private:
30 virtual ~PasswordGenerationPopupViewBridge(); 30 virtual ~PasswordGenerationPopupViewBridge();
31 31
32 // PasswordGenerationPopupView implementation. 32 // PasswordGenerationPopupView implementation.
33 virtual void Hide() OVERRIDE; 33 virtual void Hide() OVERRIDE;
34 virtual void Show() OVERRIDE; 34 virtual void Show() OVERRIDE;
35 virtual gfx::Size GetPreferredSizeOfPasswordView() OVERRIDE;
35 virtual void UpdateBoundsAndRedrawPopup() OVERRIDE; 36 virtual void UpdateBoundsAndRedrawPopup() OVERRIDE;
36 virtual void PasswordSelectionUpdated() OVERRIDE; 37 virtual void PasswordSelectionUpdated() OVERRIDE;
38 virtual bool IsPointInPasswordBounds(const gfx::Point& point) OVERRIDE;
37 39
38 // The native Cocoa view. 40 // The native Cocoa view.
39 base::scoped_nsobject<PasswordGenerationPopupViewCocoa> view_; 41 base::scoped_nsobject<PasswordGenerationPopupViewCocoa> view_;
40 42
41 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewBridge); 43 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewBridge);
42 }; 44 };
43 45
44 } // namespace autofill 46 } // namespace autofill
45 47
46 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDG E_H_ 48 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_BRIDG E_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698