| 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/browser/first_run/first_run.h" | 5 #include "chrome/browser/first_run/first_run.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 47 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 48 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" | 48 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" |
| 49 #include "chrome/common/chrome_constants.h" | 49 #include "chrome/common/chrome_constants.h" |
| 50 #include "chrome/common/chrome_paths.h" | 50 #include "chrome/common/chrome_paths.h" |
| 51 #include "chrome/common/chrome_switches.h" | 51 #include "chrome/common/chrome_switches.h" |
| 52 #include "chrome/common/pref_names.h" | 52 #include "chrome/common/pref_names.h" |
| 53 #include "chrome/common/url_constants.h" | 53 #include "chrome/common/url_constants.h" |
| 54 #include "chrome/grit/locale_settings.h" | 54 #include "chrome/grit/locale_settings.h" |
| 55 #include "chrome/installer/util/master_preferences.h" | 55 #include "chrome/installer/util/master_preferences.h" |
| 56 #include "chrome/installer/util/master_preferences_constants.h" | 56 #include "chrome/installer/util/master_preferences_constants.h" |
| 57 #include "chrome/installer/util/util_constants.h" | |
| 58 #include "components/pref_registry/pref_registry_syncable.h" | 57 #include "components/pref_registry/pref_registry_syncable.h" |
| 59 #include "components/prefs/pref_service.h" | 58 #include "components/prefs/pref_service.h" |
| 60 #include "components/search_engines/template_url_service.h" | 59 #include "components/search_engines/template_url_service.h" |
| 61 #include "components/signin/core/browser/signin_manager.h" | 60 #include "components/signin/core/browser/signin_manager.h" |
| 62 #include "components/signin/core/browser/signin_tracker.h" | 61 #include "components/signin/core/browser/signin_tracker.h" |
| 63 #include "content/public/browser/navigation_entry.h" | 62 #include "content/public/browser/navigation_entry.h" |
| 64 #include "content/public/browser/notification_observer.h" | 63 #include "content/public/browser/notification_observer.h" |
| 65 #include "content/public/browser/notification_registrar.h" | 64 #include "content/public/browser/notification_registrar.h" |
| 66 #include "content/public/browser/notification_service.h" | 65 #include "content/public/browser/notification_service.h" |
| 67 #include "content/public/browser/notification_types.h" | 66 #include "content/public/browser/notification_types.h" |
| (...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 SetShouldDoPersonalDataManagerFirstRun(); | 732 SetShouldDoPersonalDataManagerFirstRun(); |
| 734 | 733 |
| 735 internal::DoPostImportPlatformSpecificTasks(profile); | 734 internal::DoPostImportPlatformSpecificTasks(profile); |
| 736 } | 735 } |
| 737 | 736 |
| 738 uint16_t auto_import_state() { | 737 uint16_t auto_import_state() { |
| 739 return g_auto_import_state; | 738 return g_auto_import_state; |
| 740 } | 739 } |
| 741 | 740 |
| 742 } // namespace first_run | 741 } // namespace first_run |
| OLD | NEW |