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

Unified Diff: chrome/browser/ui/cocoa/autofill/password_generation_popup_view_bridge.mm

Issue 342833002: [Password Generation] Update Aura UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix images Created 6 years, 6 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/autofill/password_generation_popup_view_bridge.mm
diff --git a/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_bridge.mm b/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_bridge.mm
index 4a3d84ca9f907a0f01d14133c4e2db9f6d0b0d17..4671acde1f529689ef89b3ff8cf034091f30ffa0 100644
--- a/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_bridge.mm
+++ b/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_bridge.mm
@@ -35,6 +35,11 @@ void PasswordGenerationPopupViewBridge::Show() {
[view_ showPopup];
}
+int GetHeight(int width) {
+ // TODO: Implement this function.
Ilya Sherman 2014/06/25 19:46:55 nit: TODO(gcasto):
Garrett Casto 2014/06/25 20:29:36 Done.
+ return 0;
+}
+
void PasswordGenerationPopupViewBridge::UpdateBoundsAndRedrawPopup() {
[view_ updateBoundsAndRedrawPopup];
}
@@ -43,6 +48,12 @@ void PasswordGenerationPopupViewBridge::PasswordSelectionUpdated() {
[view_ setNeedsDisplay:YES];
}
+bool PasswordGenerationPopupViewBridge::IsPointInPasswordBounds(
+ const gfx::Point& point) {
+ // TODO: Implement this function.
Ilya Sherman 2014/06/25 19:46:55 Ditto
Garrett Casto 2014/06/25 20:29:37 Done.
+ return true;
+}
+
PasswordGenerationPopupView* PasswordGenerationPopupView::Create(
PasswordGenerationPopupController* controller) {
return new PasswordGenerationPopupViewBridge(controller);

Powered by Google App Engine
This is Rietveld 408576698