| Index: chrome/browser/autofill/autofill_metrics_unittest.cc
|
| diff --git a/chrome/browser/autofill/autofill_metrics_unittest.cc b/chrome/browser/autofill/autofill_metrics_unittest.cc
|
| index c56e993f2b5a0f0d119dd59331673a0d7ea47a92..cdb68cec4ae226ef0d351ba231cbdd6a638745aa 100644
|
| --- a/chrome/browser/autofill/autofill_metrics_unittest.cc
|
| +++ b/chrome/browser/autofill/autofill_metrics_unittest.cc
|
| @@ -21,12 +21,12 @@
|
| #include "chrome/browser/ui/tab_contents/test_tab_contents.h"
|
| #include "chrome/browser/webdata/web_data_service.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| +#include "content/public/common/form_data.h"
|
| +#include "content/public/common/form_field.h"
|
| #include "content/public/test/test_browser_thread.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "ui/gfx/rect.h"
|
| -#include "webkit/forms/form_data.h"
|
| -#include "webkit/forms/form_field.h"
|
|
|
| using content::BrowserThread;
|
| using ::testing::_;
|
| @@ -34,8 +34,8 @@ using ::testing::AnyNumber;
|
| using ::testing::Mock;
|
| using base::TimeTicks;
|
| using base::TimeDelta;
|
| -using webkit::forms::FormData;
|
| -using webkit::forms::FormField;
|
| +using content::FormData;
|
| +using content::FormField;
|
|
|
| namespace {
|
|
|
|
|