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 #include "chrome/browser/autofill/test_autofill_external_delegate.h" | 5 #include "chrome/browser/autofill/test_autofill_external_delegate.h" |
6 | 6 |
7 void AutofillExternalDelegate::CreateForWebContentsAndManager( | 7 void AutofillExternalDelegate::CreateForWebContentsAndManager( |
8 content::WebContents* web_contents, | 8 content::WebContents* web_contents, |
9 AutofillManager* autofill_manager) { | 9 AutofillManager* autofill_manager) { |
10 if (FromWebContents(web_contents)) | 10 if (FromWebContents(web_contents)) |
11 return; | 11 return; |
12 | 12 |
13 web_contents->SetUserData( | 13 web_contents->SetUserData( |
14 &kLocatorKey, | 14 UserDataKey(), |
15 new TestAutofillExternalDelegate(web_contents, autofill_manager)); | 15 new TestAutofillExternalDelegate(web_contents, autofill_manager)); |
16 } | 16 } |
OLD | NEW |