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

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

Issue 220253002: Add net/base/filename_util.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
« no previous file with comments | « chrome/common/net/url_fixer_upper_unittest.cc ('k') | chrome/test/base/web_ui_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #if defined(OS_WIN) 7 #if defined(OS_WIN)
8 #include <windows.h> 8 #include <windows.h>
9 #endif 9 #endif
10 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 #include "content/public/browser/render_process_host.h" 63 #include "content/public/browser/render_process_host.h"
64 #include "content/public/browser/render_view_host.h" 64 #include "content/public/browser/render_view_host.h"
65 #include "content/public/browser/web_contents.h" 65 #include "content/public/browser/web_contents.h"
66 #include "content/public/browser/web_contents_observer.h" 66 #include "content/public/browser/web_contents_observer.h"
67 #include "content/public/browser/web_contents_view.h" 67 #include "content/public/browser/web_contents_view.h"
68 #include "content/public/common/geoposition.h" 68 #include "content/public/common/geoposition.h"
69 #include "content/public/test/browser_test_utils.h" 69 #include "content/public/test/browser_test_utils.h"
70 #include "content/public/test/download_test_observer.h" 70 #include "content/public/test/download_test_observer.h"
71 #include "content/public/test/test_navigation_observer.h" 71 #include "content/public/test/test_navigation_observer.h"
72 #include "content/public/test/test_utils.h" 72 #include "content/public/test/test_utils.h"
73 #include "net/base/net_util.h" 73 #include "net/base/filename_util.h"
74 #include "net/cookies/cookie_constants.h" 74 #include "net/cookies/cookie_constants.h"
75 #include "net/cookies/cookie_monster.h" 75 #include "net/cookies/cookie_monster.h"
76 #include "net/cookies/cookie_store.h" 76 #include "net/cookies/cookie_store.h"
77 #include "net/test/python_utils.h" 77 #include "net/test/python_utils.h"
78 #include "net/url_request/url_request_context.h" 78 #include "net/url_request/url_request_context.h"
79 #include "net/url_request/url_request_context_getter.h" 79 #include "net/url_request/url_request_context_getter.h"
80 #include "third_party/skia/include/core/SkBitmap.h" 80 #include "third_party/skia/include/core/SkBitmap.h"
81 #include "third_party/skia/include/core/SkColor.h" 81 #include "third_party/skia/include/core/SkColor.h"
82 #include "ui/gfx/size.h" 82 #include "ui/gfx/size.h"
83 #include "ui/snapshot/test/snapshot_desktop.h" 83 #include "ui/snapshot/test/snapshot_desktop.h"
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 void HistoryEnumerator::HistoryQueryComplete( 591 void HistoryEnumerator::HistoryQueryComplete(
592 const base::Closure& quit_task, 592 const base::Closure& quit_task,
593 HistoryService::Handle request_handle, 593 HistoryService::Handle request_handle,
594 history::QueryResults* results) { 594 history::QueryResults* results) {
595 for (size_t i = 0; i < results->size(); ++i) 595 for (size_t i = 0; i < results->size(); ++i)
596 urls_.push_back((*results)[i].url()); 596 urls_.push_back((*results)[i].url());
597 quit_task.Run(); 597 quit_task.Run();
598 } 598 }
599 599
600 } // namespace ui_test_utils 600 } // namespace ui_test_utils
OLDNEW
« no previous file with comments | « chrome/common/net/url_fixer_upper_unittest.cc ('k') | chrome/test/base/web_ui_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698