| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_AUTOFILL_TEST_AUTOFILL_EXTERNAL_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_AUTOFILL_TEST_AUTOFILL_EXTERNAL_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_TEST_AUTOFILL_EXTERNAL_DELEGATE_H_ | 6 #define CHROME_BROWSER_AUTOFILL_TEST_AUTOFILL_EXTERNAL_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/autofill/autofill_external_delegate.h" | 9 #include "chrome/browser/autofill/autofill_external_delegate.h" |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 int separator_index) OVERRIDE; | 28 int separator_index) OVERRIDE; |
| 29 | 29 |
| 30 virtual void OnQueryPlatformSpecific(int query_id, | 30 virtual void OnQueryPlatformSpecific(int query_id, |
| 31 const webkit::forms::FormData& form, | 31 const webkit::forms::FormData& form, |
| 32 const webkit::forms::FormField& field, | 32 const webkit::forms::FormField& field, |
| 33 const gfx::Rect& bounds) OVERRIDE; | 33 const gfx::Rect& bounds) OVERRIDE; |
| 34 | 34 |
| 35 | 35 |
| 36 virtual void HideAutofillPopupInternal() OVERRIDE; | 36 virtual void HideAutofillPopupInternal() OVERRIDE; |
| 37 | 37 |
| 38 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
| 39 |
| 38 private: | 40 private: |
| 39 DISALLOW_COPY_AND_ASSIGN(TestAutofillExternalDelegate); | 41 DISALLOW_COPY_AND_ASSIGN(TestAutofillExternalDelegate); |
| 40 }; | 42 }; |
| 41 | 43 |
| 42 #endif // CHROME_BROWSER_AUTOFILL_TEST_AUTOFILL_EXTERNAL_DELEGATE_H_ | 44 #endif // CHROME_BROWSER_AUTOFILL_TEST_AUTOFILL_EXTERNAL_DELEGATE_H_ |
| OLD | NEW |