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

Side by Side Diff: chrome/browser/autocomplete/shortcuts_backend_unittest.cc

Issue 689553002: Cleanup: Remove unneeded path_service.h includes in base and chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win Created 6 years, 1 month 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/browser/autocomplete/shortcuts_backend.h" 5 #include "chrome/browser/autocomplete/shortcuts_backend.h"
6 6
7 #include "base/files/scoped_temp_dir.h" 7 #include "base/files/scoped_temp_dir.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "base/path_service.h"
10 #include "base/strings/stringprintf.h" 9 #include "base/strings/stringprintf.h"
11 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
12 #include "chrome/browser/autocomplete/shortcuts_backend_factory.h" 11 #include "chrome/browser/autocomplete/shortcuts_backend_factory.h"
13 #include "chrome/browser/history/shortcuts_database.h" 12 #include "chrome/browser/history/shortcuts_database.h"
14 #include "chrome/browser/search_engines/template_url_service_factory.h" 13 #include "chrome/browser/search_engines/template_url_service_factory.h"
15 #include "chrome/test/base/testing_profile.h" 14 #include "chrome/test/base/testing_profile.h"
16 #include "chrome/test/base/ui_test_utils.h" 15 #include "chrome/test/base/ui_test_utils.h"
17 #include "components/search_engines/template_url_service.h" 16 #include "components/search_engines/template_url_service.h"
18 #include "content/public/test/test_browser_thread.h" 17 #include "content/public/test/test_browser_thread.h"
19 #include "sql/statement.h" 18 #include "sql/statement.h"
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 ASSERT_TRUE(shortcut4_iter != shortcuts_map().end()); 312 ASSERT_TRUE(shortcut4_iter != shortcuts_map().end());
314 EXPECT_EQ(shortcut4.id, shortcut4_iter->second.id); 313 EXPECT_EQ(shortcut4.id, shortcut4_iter->second.id);
315 314
316 history::ShortcutsDatabase::ShortcutIDs deleted_ids; 315 history::ShortcutsDatabase::ShortcutIDs deleted_ids;
317 deleted_ids.push_back(shortcut3.id); 316 deleted_ids.push_back(shortcut3.id);
318 deleted_ids.push_back(shortcut4.id); 317 deleted_ids.push_back(shortcut4.id);
319 EXPECT_TRUE(DeleteShortcutsWithIDs(deleted_ids)); 318 EXPECT_TRUE(DeleteShortcutsWithIDs(deleted_ids));
320 319
321 ASSERT_EQ(0U, shortcuts_map().size()); 320 ASSERT_EQ(0U, shortcuts_map().size());
322 } 321 }
OLDNEW
« no previous file with comments | « chrome/browser/autocomplete/history_url_provider_unittest.cc ('k') | chrome/browser/background/background_mode_manager_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698