| OLD | NEW |
| 1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-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 #include "chrome/browser/chromeos/dom_ui/mobile_setup_ui.h" | 5 #include "chrome/browser/chromeos/dom_ui/mobile_setup_ui.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "base/values.h" | 22 #include "base/values.h" |
| 23 #include "base/weak_ptr.h" | 23 #include "base/weak_ptr.h" |
| 24 #include "chrome/browser/browser_list.h" | 24 #include "chrome/browser/browser_list.h" |
| 25 #include "chrome/browser/browser_process.h" | 25 #include "chrome/browser/browser_process.h" |
| 26 #include "chrome/browser/browser_thread.h" | 26 #include "chrome/browser/browser_thread.h" |
| 27 #include "chrome/browser/chromeos/cros/cros_library.h" | 27 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 28 #include "chrome/browser/chromeos/cros/network_library.h" | 28 #include "chrome/browser/chromeos/cros/network_library.h" |
| 29 #include "chrome/browser/chromeos/cros/system_library.h" | 29 #include "chrome/browser/chromeos/cros/system_library.h" |
| 30 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 30 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" |
| 31 #include "chrome/browser/prefs/pref_service.h" | 31 #include "chrome/browser/prefs/pref_service.h" |
| 32 #include "chrome/browser/profile.h" | 32 #include "chrome/browser/profiles/profile.h" |
| 33 #include "chrome/browser/tab_contents/tab_contents.h" | 33 #include "chrome/browser/tab_contents/tab_contents.h" |
| 34 #include "chrome/browser/ui/browser.h" | 34 #include "chrome/browser/ui/browser.h" |
| 35 #include "chrome/common/jstemplate_builder.h" | 35 #include "chrome/common/jstemplate_builder.h" |
| 36 #include "chrome/common/pref_names.h" | 36 #include "chrome/common/pref_names.h" |
| 37 #include "chrome/common/url_constants.h" | 37 #include "chrome/common/url_constants.h" |
| 38 #include "googleurl/src/gurl.h" | 38 #include "googleurl/src/gurl.h" |
| 39 #include "grit/browser_resources.h" | 39 #include "grit/browser_resources.h" |
| 40 #include "grit/chromium_strings.h" | 40 #include "grit/chromium_strings.h" |
| 41 #include "grit/generated_resources.h" | 41 #include "grit/generated_resources.h" |
| 42 #include "grit/locale_settings.h" | 42 #include "grit/locale_settings.h" |
| (...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1033 new MobileSetupUIHTMLSource(service_path); | 1033 new MobileSetupUIHTMLSource(service_path); |
| 1034 | 1034 |
| 1035 // Set up the chrome://mobilesetup/ source. | 1035 // Set up the chrome://mobilesetup/ source. |
| 1036 BrowserThread::PostTask( | 1036 BrowserThread::PostTask( |
| 1037 BrowserThread::IO, FROM_HERE, | 1037 BrowserThread::IO, FROM_HERE, |
| 1038 NewRunnableMethod( | 1038 NewRunnableMethod( |
| 1039 Singleton<ChromeURLDataManager>::get(), | 1039 Singleton<ChromeURLDataManager>::get(), |
| 1040 &ChromeURLDataManager::AddDataSource, | 1040 &ChromeURLDataManager::AddDataSource, |
| 1041 make_scoped_refptr(html_source))); | 1041 make_scoped_refptr(html_source))); |
| 1042 } | 1042 } |
| OLD | NEW |