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

Side by Side Diff: chrome/browser/search_engines/search_provider_install_data.cc

Issue 324283003: Move search_terms_data to components/search_engines (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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 (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/search_engines/search_provider_install_data.h" 5 #include "chrome/browser/search_engines/search_provider_install_data.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <functional> 8 #include <functional>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/bind_helpers.h" 13 #include "base/bind_helpers.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
16 #include "base/sequenced_task_runner_helpers.h" 16 #include "base/sequenced_task_runner_helpers.h"
17 #include "chrome/browser/google/google_url_tracker_factory.h" 17 #include "chrome/browser/google/google_url_tracker_factory.h"
18 #include "chrome/browser/search_engines/search_host_to_urls_map.h" 18 #include "chrome/browser/search_engines/search_host_to_urls_map.h"
19 #include "chrome/browser/search_engines/search_terms_data.h"
20 #include "chrome/browser/search_engines/template_url.h" 19 #include "chrome/browser/search_engines/template_url.h"
21 #include "chrome/browser/search_engines/template_url_service.h" 20 #include "chrome/browser/search_engines/template_url_service.h"
22 #include "chrome/browser/search_engines/template_url_service_factory.h" 21 #include "chrome/browser/search_engines/template_url_service_factory.h"
22 #include "chrome/browser/search_engines/ui_thread_search_terms_data.h"
23 #include "chrome/browser/search_engines/util.h" 23 #include "chrome/browser/search_engines/util.h"
24 #include "components/google/core/browser/google_url_tracker.h" 24 #include "components/google/core/browser/google_url_tracker.h"
25 #include "content/public/browser/browser_thread.h" 25 #include "content/public/browser/browser_thread.h"
26 #include "content/public/browser/render_process_host.h" 26 #include "content/public/browser/render_process_host.h"
27 #include "content/public/browser/render_process_host_observer.h" 27 #include "content/public/browser/render_process_host_observer.h"
28 28
29 using content::BrowserThread; 29 using content::BrowserThread;
30 30
31 typedef SearchHostToURLsMap::TemplateURLSet TemplateURLSet; 31 typedef SearchHostToURLsMap::TemplateURLSet TemplateURLSet;
32 32
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 311
312 std::for_each(closure_queue.begin(), 312 std::for_each(closure_queue.begin(),
313 closure_queue.end(), 313 closure_queue.end(),
314 std::mem_fun_ref(&base::Closure::Run)); 314 std::mem_fun_ref(&base::Closure::Run));
315 315
316 // Since we expect this request to be rare, clear out the information. This 316 // Since we expect this request to be rare, clear out the information. This
317 // also keeps the responses current as the search providers change. 317 // also keeps the responses current as the search providers change.
318 provider_map_.reset(); 318 provider_map_.reset();
319 SetDefault(NULL); 319 SetDefault(NULL);
320 } 320 }
OLDNEW
« no previous file with comments | « chrome/browser/search_engines/search_host_to_urls_map_unittest.cc ('k') | chrome/browser/search_engines/search_terms_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698