| 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 2364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2375 // Whether the metrics for the state of geolocation post-disclosure being shown | 2375 // Whether the metrics for the state of geolocation post-disclosure being shown |
| 2376 // have been recorded. | 2376 // have been recorded. |
| 2377 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = | 2377 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = |
| 2378 "search_geolocation_post_disclosure_metrics_recorded"; | 2378 "search_geolocation_post_disclosure_metrics_recorded"; |
| 2379 #endif | 2379 #endif |
| 2380 | 2380 |
| 2381 // A dictionary which stores whether location access is enabled for the current | 2381 // A dictionary which stores whether location access is enabled for the current |
| 2382 // default search engine, if it is the Google search engine. | 2382 // default search engine, if it is the Google search engine. |
| 2383 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; | 2383 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; |
| 2384 | 2384 |
| 2385 const char kImportantSitesDialogHistory[] = "important_sites.dialog_history"; |
| 2386 |
| 2385 } // namespace prefs | 2387 } // namespace prefs |
| OLD | NEW |