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

Side by Side Diff: chrome/renderer/autofill/form_autocomplete_browsertest.cc

Issue 108283005: Moved ipc-specific files from autofill/core to autofill/content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "Final" fix. Created 7 years 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "base/time/time.h" 5 #include "base/time/time.h"
6 #include "chrome/test/base/chrome_render_view_test.h" 6 #include "chrome/test/base/chrome_render_view_test.h"
7 #include "components/autofill/core/common/autofill_messages.h" 7 #include "components/autofill/content/common/autofill_messages.h"
8 #include "components/autofill/core/common/form_data.h" 8 #include "components/autofill/core/common/form_data.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "third_party/WebKit/public/platform/WebString.h" 10 #include "third_party/WebKit/public/platform/WebString.h"
11 #include "third_party/WebKit/public/platform/WebURLError.h" 11 #include "third_party/WebKit/public/platform/WebURLError.h"
12 #include "third_party/WebKit/public/web/WebDocument.h" 12 #include "third_party/WebKit/public/web/WebDocument.h"
13 #include "third_party/WebKit/public/web/WebFormElement.h" 13 #include "third_party/WebKit/public/web/WebFormElement.h"
14 14
15 using blink::WebFrame; 15 using blink::WebFrame;
16 using blink::WebString; 16 using blink::WebString;
17 using blink::WebURLError; 17 using blink::WebURLError;
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 // Submit the form. 116 // Submit the form.
117 ExecuteJavaScript("document.getElementById('myForm').submit();"); 117 ExecuteJavaScript("document.getElementById('myForm').submit();");
118 ProcessPendingMessages(); 118 ProcessPendingMessages();
119 119
120 // No FormSubmitted message should have been sent. 120 // No FormSubmitted message should have been sent.
121 EXPECT_FALSE(render_thread_->sink().GetFirstMessageMatching( 121 EXPECT_FALSE(render_thread_->sink().GetFirstMessageMatching(
122 AutofillHostMsg_FormSubmitted::ID)); 122 AutofillHostMsg_FormSubmitted::ID));
123 } 123 }
124 124
125 } // namespace autofill 125 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698