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..409498e08c79ec3b4f597eb5beb5b5f0c042cb80 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 SetBoundsForWidth(int width) { |
+ // TODO: Implement this function. |
+ 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. |
+ return true; |
+} |
+ |
PasswordGenerationPopupView* PasswordGenerationPopupView::Create( |
PasswordGenerationPopupController* controller) { |
return new PasswordGenerationPopupViewBridge(controller); |