Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1182)

Side by Side Diff: components/autofill/core/browser/autofill_manager_unittest.cc

Issue 17481004: Update remaining Blink header includes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update CL due to file moves Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #include <algorithm> 5 #include <algorithm>
6 #include <vector> 6 #include <vector>
7 7
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "components/autofill/core/common/forms_seen_state.h" 43 #include "components/autofill/core/common/forms_seen_state.h"
44 #include "components/user_prefs/user_prefs.h" 44 #include "components/user_prefs/user_prefs.h"
45 #include "content/public/browser/web_contents.h" 45 #include "content/public/browser/web_contents.h"
46 #include "content/public/test/mock_render_process_host.h" 46 #include "content/public/test/mock_render_process_host.h"
47 #include "content/public/test/test_utils.h" 47 #include "content/public/test/test_utils.h"
48 #include "googleurl/src/gurl.h" 48 #include "googleurl/src/gurl.h"
49 #include "grit/component_strings.h" 49 #include "grit/component_strings.h"
50 #include "ipc/ipc_test_sink.h" 50 #include "ipc/ipc_test_sink.h"
51 #include "testing/gmock/include/gmock/gmock.h" 51 #include "testing/gmock/include/gmock/gmock.h"
52 #include "testing/gtest/include/gtest/gtest.h" 52 #include "testing/gtest/include/gtest/gtest.h"
53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h" 53 #include "third_party/WebKit/public/web/WebAutofillClient.h"
54 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" 54 #include "third_party/WebKit/public/web/WebFormElement.h"
55 #include "ui/base/l10n/l10n_util.h" 55 #include "ui/base/l10n/l10n_util.h"
56 #include "ui/gfx/rect.h" 56 #include "ui/gfx/rect.h"
57 57
58 using content::WebContents; 58 using content::WebContents;
59 using testing::_; 59 using testing::_;
60 using WebKit::WebFormElement; 60 using WebKit::WebFormElement;
61 61
62 namespace autofill { 62 namespace autofill {
63 63
64 typedef PersonalDataManager::GUIDPair GUIDPair; 64 typedef PersonalDataManager::GUIDPair GUIDPair;
(...skipping 3219 matching lines...) Expand 10 before | Expand all | Expand 10 after
3284 CreateTestAddressFormData(&form); 3284 CreateTestAddressFormData(&form);
3285 std::vector<FormData> forms(1, form); 3285 std::vector<FormData> forms(1, form);
3286 FormsSeen(forms); 3286 FormsSeen(forms);
3287 const FormFieldData& field = form.fields[0]; 3287 const FormFieldData& field = form.fields[0];
3288 GetAutofillSuggestions(form, field); // should call the delegate's OnQuery() 3288 GetAutofillSuggestions(form, field); // should call the delegate's OnQuery()
3289 3289
3290 autofill_manager_->SetExternalDelegate(NULL); 3290 autofill_manager_->SetExternalDelegate(NULL);
3291 } 3291 }
3292 3292
3293 } // namespace autofill 3293 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/browser/autofill_manager.cc ('k') | components/autofill/core/browser/autofill_merge_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698