| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_MODEL_H_ | 5 #ifndef CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_MODEL_H_ |
| 6 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_MODEL_H_ | 6 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_MODEL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
| 14 #include "chrome/browser/webdata/web_data_service.h" | 14 #include "chrome/browser/webdata/web_data_service.h" |
| 15 #include "chrome/common/notification_observer.h" |
| 15 #include "chrome/common/notification_registrar.h" | 16 #include "chrome/common/notification_registrar.h" |
| 16 | 17 |
| 17 class GURL; | 18 class GURL; |
| 18 class Extension; | 19 class Extension; |
| 19 class PrefService; | 20 class PrefService; |
| 20 class Profile; | 21 class Profile; |
| 21 | 22 |
| 22 namespace history { | 23 namespace history { |
| 23 struct URLVisitedDetails; | 24 struct URLVisitedDetails; |
| 24 } | 25 } |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 // increasing integer that is initialized from the database. | 391 // increasing integer that is initialized from the database. |
| 391 TemplateURL::IDType next_id_; | 392 TemplateURL::IDType next_id_; |
| 392 | 393 |
| 393 // List of extension IDs waiting for Load to have keywords registered. | 394 // List of extension IDs waiting for Load to have keywords registered. |
| 394 std::vector<std::string> pending_extension_ids_; | 395 std::vector<std::string> pending_extension_ids_; |
| 395 | 396 |
| 396 DISALLOW_COPY_AND_ASSIGN(TemplateURLModel); | 397 DISALLOW_COPY_AND_ASSIGN(TemplateURLModel); |
| 397 }; | 398 }; |
| 398 | 399 |
| 399 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_MODEL_H_ | 400 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_MODEL_H_ |
| OLD | NEW |