| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_AUTOFILL_AUTOFILL_DIALOG_SIGN_IN_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_SIGN_IN_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_SIGN_IN_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_SIGN_IN_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "content/public/browser/web_contents_delegate.h" | 9 #include "content/public/browser/web_contents_delegate.h" |
| 10 #include "content/public/browser/web_contents_observer.h" | 10 #include "content/public/browser/web_contents_observer.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 class AutofillDialogSignInDelegate: public content::WebContentsDelegate, | 23 class AutofillDialogSignInDelegate: public content::WebContentsDelegate, |
| 24 public content::WebContentsObserver { | 24 public content::WebContentsObserver { |
| 25 public: | 25 public: |
| 26 AutofillDialogSignInDelegate(AutofillDialogView* dialog_view, | 26 AutofillDialogSignInDelegate(AutofillDialogView* dialog_view, |
| 27 content::WebContents* dialog_web_contents, | 27 content::WebContents* dialog_web_contents, |
| 28 content::WebContents* originating_web_contents, | 28 content::WebContents* originating_web_contents, |
| 29 const gfx::Size& minimum_size, | 29 const gfx::Size& minimum_size, |
| 30 const gfx::Size& maximum_size); | 30 const gfx::Size& maximum_size); |
| 31 | 31 |
| 32 // WebContentsDelegate implementation. | 32 // WebContentsDelegate implementation. |
| 33 virtual void ResizeDueToAutoResize(content::WebContents* source, | 33 void ResizeDueToAutoResize(content::WebContents* source, |
| 34 const gfx::Size& preferred_size) override; | 34 const gfx::Size& preferred_size) override; |
| 35 virtual content::WebContents* OpenURLFromTab( | 35 content::WebContents* OpenURLFromTab( |
| 36 content::WebContents* source, | 36 content::WebContents* source, |
| 37 const content::OpenURLParams& params) override; | 37 const content::OpenURLParams& params) override; |
| 38 virtual void AddNewContents(content::WebContents* source, | 38 void AddNewContents(content::WebContents* source, |
| 39 content::WebContents* new_contents, | 39 content::WebContents* new_contents, |
| 40 WindowOpenDisposition disposition, | 40 WindowOpenDisposition disposition, |
| 41 const gfx::Rect& initial_pos, | 41 const gfx::Rect& initial_pos, |
| 42 bool user_gesture, | 42 bool user_gesture, |
| 43 bool* was_blocked) override; | 43 bool* was_blocked) override; |
| 44 virtual bool PreHandleGestureEvent( | 44 bool PreHandleGestureEvent(content::WebContents* source, |
| 45 content::WebContents* source, | 45 const blink::WebGestureEvent& event) override; |
| 46 const blink::WebGestureEvent& event) override; | |
| 47 | 46 |
| 48 // WebContentsObserver implementation. | 47 // WebContentsObserver implementation. |
| 49 virtual void RenderViewCreated( | 48 void RenderViewCreated(content::RenderViewHost* render_view_host) override; |
| 50 content::RenderViewHost* render_view_host) override; | |
| 51 | 49 |
| 52 // Updates the size limits and enables auto-resize for this view. | 50 // Updates the size limits and enables auto-resize for this view. |
| 53 void UpdateLimitsAndEnableAutoResize(const gfx::Size& minimum_size, | 51 void UpdateLimitsAndEnableAutoResize(const gfx::Size& minimum_size, |
| 54 const gfx::Size& maximum_size); | 52 const gfx::Size& maximum_size); |
| 55 | 53 |
| 56 private: | 54 private: |
| 57 // Enables auto-resizing for this view, if possible, constrained to the latest | 55 // Enables auto-resizing for this view, if possible, constrained to the latest |
| 58 // minimum and maximum size allowed by the delegate. | 56 // minimum and maximum size allowed by the delegate. |
| 59 void EnableAutoResize(); | 57 void EnableAutoResize(); |
| 60 | 58 |
| 61 // The dialog view hosting this sign in page. | 59 // The dialog view hosting this sign in page. |
| 62 AutofillDialogView* const dialog_view_; | 60 AutofillDialogView* const dialog_view_; |
| 63 | 61 |
| 64 // The WebContents of the page that originated the dialog. Weak ptr, but | 62 // The WebContents of the page that originated the dialog. Weak ptr, but |
| 65 // guaranteed to outlive the dialog, since the dialog is tab-modal to those | 63 // guaranteed to outlive the dialog, since the dialog is tab-modal to those |
| 66 // contents. | 64 // contents. |
| 67 content::WebContents* const originating_web_contents_; | 65 content::WebContents* const originating_web_contents_; |
| 68 | 66 |
| 69 // The minimum and maximum sizes that the sign-in view may have. | 67 // The minimum and maximum sizes that the sign-in view may have. |
| 70 gfx::Size minimum_size_; | 68 gfx::Size minimum_size_; |
| 71 gfx::Size maximum_size_; | 69 gfx::Size maximum_size_; |
| 72 | 70 |
| 73 DISALLOW_COPY_AND_ASSIGN(AutofillDialogSignInDelegate); | 71 DISALLOW_COPY_AND_ASSIGN(AutofillDialogSignInDelegate); |
| 74 }; | 72 }; |
| 75 | 73 |
| 76 } // namespace autofill | 74 } // namespace autofill |
| 77 | 75 |
| 78 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_SIGN_IN_DELEGATE_H_ | 76 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_SIGN_IN_DELEGATE_H_ |
| OLD | NEW |