OLD | NEW |
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 #ifndef CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ |
6 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ | 6 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ |
7 #pragma once | |
8 | 7 |
9 #include <list> | 8 #include <list> |
10 #include <map> | 9 #include <map> |
11 #include <set> | 10 #include <set> |
12 #include <string> | 11 #include <string> |
13 #include <vector> | 12 #include <vector> |
14 | 13 |
15 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
16 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
17 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 | 679 |
681 // This is used to log the origin of changes to the default search provider. | 680 // This is used to log the origin of changes to the default search provider. |
682 // We set this value to increasingly specific values when we know what is the | 681 // We set this value to increasingly specific values when we know what is the |
683 // cause/origin of a default search change. | 682 // cause/origin of a default search change. |
684 DefaultSearchChangeOrigin dsp_change_origin_; | 683 DefaultSearchChangeOrigin dsp_change_origin_; |
685 | 684 |
686 DISALLOW_COPY_AND_ASSIGN(TemplateURLService); | 685 DISALLOW_COPY_AND_ASSIGN(TemplateURLService); |
687 }; | 686 }; |
688 | 687 |
689 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ | 688 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ |
OLD | NEW |