Chromium Code Reviews| Index: chrome/browser/autofill/autofill_external_delegate.cc |
| diff --git a/chrome/browser/autofill/autofill_external_delegate.cc b/chrome/browser/autofill/autofill_external_delegate.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d6622f832e05df4e26eacaa608a3f3840b030ba6 |
| --- /dev/null |
| +++ b/chrome/browser/autofill/autofill_external_delegate.cc |
| @@ -0,0 +1,19 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "chrome/browser/autofill/autofill_external_delegate.h" |
| + |
| +AutofillExternalDelegate::~AutofillExternalDelegate() { |
| +} |
| + |
| +// Add a "!defined(OS_YOUROS) for each platform that implements this |
| +// in an autofill_external_delegate_YOUROS.cc. Currently there are |
| +// none, so all platforms use the default. |
| + |
| +AutofillExternalDelegate* AutofillExternalDelegate::create( |
| + TabContentsWrapper*, AutofillManager*) { |
| + return NULL; |
| +} |
| + |
| + |
|
dhollowa
2011/10/26 16:14:22
nit: extra line.
|