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

Side by Side Diff: chrome/test/base/ui_test_utils.cc

Issue 2038233002: Using ResourceRequestBody as the type of HTTP body outside of //content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@make-resource-request-body-public
Patch Set: Rebasing... Created 4 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
OLDNEW
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/test/base/ui_test_utils.h" 5 #include "chrome/test/base/ui_test_utils.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <memory> 9 #include <memory>
10 10
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/files/file_path.h" 15 #include "base/files/file_path.h"
16 #include "base/files/file_util.h" 16 #include "base/files/file_util.h"
17 #include "base/macros.h" 17 #include "base/macros.h"
18 #include "base/memory/ref_counted.h" 18 #include "base/memory/ref_counted.h"
19 #include "base/memory/ref_counted_memory.h"
20 #include "base/path_service.h" 19 #include "base/path_service.h"
21 #include "base/strings/stringprintf.h" 20 #include "base/strings/stringprintf.h"
22 #include "base/strings/utf_string_conversions.h" 21 #include "base/strings/utf_string_conversions.h"
23 #include "base/test/test_timeouts.h" 22 #include "base/test/test_timeouts.h"
24 #include "base/time/time.h" 23 #include "base/time/time.h"
25 #include "build/build_config.h" 24 #include "build/build_config.h"
26 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 25 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
27 #include "chrome/browser/chrome_notification_types.h" 26 #include "chrome/browser/chrome_notification_types.h"
28 #include "chrome/browser/history/history_service_factory.h" 27 #include "chrome/browser/history/history_service_factory.h"
29 #include "chrome/browser/profiles/profile.h" 28 #include "chrome/browser/profiles/profile.h"
(...skipping 22 matching lines...) Expand all
52 #include "content/public/browser/download_manager.h" 51 #include "content/public/browser/download_manager.h"
53 #include "content/public/browser/geolocation_provider.h" 52 #include "content/public/browser/geolocation_provider.h"
54 #include "content/public/browser/navigation_controller.h" 53 #include "content/public/browser/navigation_controller.h"
55 #include "content/public/browser/navigation_entry.h" 54 #include "content/public/browser/navigation_entry.h"
56 #include "content/public/browser/notification_service.h" 55 #include "content/public/browser/notification_service.h"
57 #include "content/public/browser/render_process_host.h" 56 #include "content/public/browser/render_process_host.h"
58 #include "content/public/browser/storage_partition.h" 57 #include "content/public/browser/storage_partition.h"
59 #include "content/public/browser/web_contents.h" 58 #include "content/public/browser/web_contents.h"
60 #include "content/public/browser/web_contents_observer.h" 59 #include "content/public/browser/web_contents_observer.h"
61 #include "content/public/common/geoposition.h" 60 #include "content/public/common/geoposition.h"
61 #include "content/public/common/resource_request_body.h"
62 #include "content/public/test/browser_test_utils.h" 62 #include "content/public/test/browser_test_utils.h"
63 #include "content/public/test/download_test_observer.h" 63 #include "content/public/test/download_test_observer.h"
64 #include "content/public/test/test_navigation_observer.h" 64 #include "content/public/test/test_navigation_observer.h"
65 #include "content/public/test/test_utils.h" 65 #include "content/public/test/test_utils.h"
66 #include "net/base/filename_util.h" 66 #include "net/base/filename_util.h"
67 #include "net/cookies/cookie_constants.h" 67 #include "net/cookies/cookie_constants.h"
68 #include "net/cookies/cookie_monster.h" 68 #include "net/cookies/cookie_monster.h"
69 #include "net/cookies/cookie_store.h" 69 #include "net/cookies/cookie_store.h"
70 #include "net/test/python_utils.h" 70 #include "net/test/python_utils.h"
71 #include "net/url_request/url_request_context.h" 71 #include "net/url_request/url_request_context.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 void NavigateToURL(chrome::NavigateParams* params) { 151 void NavigateToURL(chrome::NavigateParams* params) {
152 chrome::Navigate(params); 152 chrome::Navigate(params);
153 content::WaitForLoadStop(params->target_contents); 153 content::WaitForLoadStop(params->target_contents);
154 } 154 }
155 155
156 void NavigateToURLWithPost(Browser* browser, const GURL& url) { 156 void NavigateToURLWithPost(Browser* browser, const GURL& url) {
157 chrome::NavigateParams params(browser, url, 157 chrome::NavigateParams params(browser, url,
158 ui::PAGE_TRANSITION_FORM_SUBMIT); 158 ui::PAGE_TRANSITION_FORM_SUBMIT);
159 159
160 std::string post_data("test=body"); 160 std::string post_data("test=body");
161 params.browser_initiated_post_data = 161 params.post_data = content::ResourceRequestBody::CreateFromBytes(
162 base::RefCountedString::TakeString(&post_data); 162 post_data.data(), post_data.size());
163 params.uses_post = true; 163 params.uses_post = true;
164 164
165 NavigateToURL(&params); 165 NavigateToURL(&params);
166 } 166 }
167 167
168 void NavigateToURL(Browser* browser, const GURL& url) { 168 void NavigateToURL(Browser* browser, const GURL& url) {
169 NavigateToURLWithDisposition(browser, url, CURRENT_TAB, 169 NavigateToURLWithDisposition(browser, url, CURRENT_TAB,
170 BROWSER_TEST_WAIT_FOR_NAVIGATION); 170 BROWSER_TEST_WAIT_FOR_NAVIGATION);
171 } 171 }
172 172
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 new content::MessageLoopRunner; 536 new content::MessageLoopRunner;
537 WaitHistoryLoadedObserver observer(runner.get()); 537 WaitHistoryLoadedObserver observer(runner.get());
538 ScopedObserver<history::HistoryService, history::HistoryServiceObserver> 538 ScopedObserver<history::HistoryService, history::HistoryServiceObserver>
539 scoped_observer(&observer); 539 scoped_observer(&observer);
540 scoped_observer.Add(history_service); 540 scoped_observer.Add(history_service);
541 runner->Run(); 541 runner->Run();
542 } 542 }
543 } 543 }
544 544
545 } // namespace ui_test_utils 545 } // namespace ui_test_utils
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698