| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/ui/webui/chromeos/sim_unlock_ui.h" | 5 #include "chrome/browser/ui/webui/chromeos/sim_unlock_ui.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
| 14 #include "base/string_piece.h" | 14 #include "base/string_piece.h" |
| 15 #include "base/values.h" | 15 #include "base/values.h" |
| 16 #include "chrome/browser/chromeos/cros/cros_library.h" | 16 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 17 #include "chrome/browser/chromeos/cros/network_library.h" | 17 #include "chrome/browser/chromeos/cros/network_library.h" |
| 18 #include "chrome/browser/chromeos/sim_dialog_delegate.h" | 18 #include "chrome/browser/chromeos/sim_dialog_delegate.h" |
| 19 #include "chrome/browser/profiles/profile.h" | 19 #include "chrome/browser/profiles/profile.h" |
| 20 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" | 20 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| 21 #include "chrome/common/chrome_notification_types.h" | 21 #include "chrome/common/chrome_notification_types.h" |
| 22 #include "chrome/common/jstemplate_builder.h" | 22 #include "chrome/common/jstemplate_builder.h" |
| 23 #include "chrome/common/url_constants.h" | 23 #include "chrome/common/url_constants.h" |
| 24 #include "content/public/browser/browser_thread.h" | 24 #include "content/public/browser/browser_thread.h" |
| 25 #include "content/public/browser/notification_service.h" | 25 #include "content/public/browser/notification_service.h" |
| 26 #include "content/public/browser/web_contents.h" | 26 #include "content/public/browser/web_contents.h" |
| 27 #include "content/public/browser/web_ui_message_handler.h" |
| 27 #include "grit/browser_resources.h" | 28 #include "grit/browser_resources.h" |
| 28 #include "grit/generated_resources.h" | 29 #include "grit/generated_resources.h" |
| 29 #include "ui/base/l10n/l10n_util.h" | 30 #include "ui/base/l10n/l10n_util.h" |
| 30 #include "ui/base/resource/resource_bundle.h" | 31 #include "ui/base/resource/resource_bundle.h" |
| 31 | 32 |
| 32 using content::BrowserThread; | 33 using content::BrowserThread; |
| 33 using content::WebContents; | 34 using content::WebContents; |
| 35 using content::WebUIMessageHandler; |
| 34 | 36 |
| 35 namespace { | 37 namespace { |
| 36 | 38 |
| 37 // JS API callbacks names. | 39 // JS API callbacks names. |
| 38 const char kJsApiCancel[] = "cancel"; | 40 const char kJsApiCancel[] = "cancel"; |
| 39 const char kJsApiChangePinCode[] = "changePinCode"; | 41 const char kJsApiChangePinCode[] = "changePinCode"; |
| 40 const char kJsApiEnterPinCode[] = "enterPinCode"; | 42 const char kJsApiEnterPinCode[] = "enterPinCode"; |
| 41 const char kJsApiEnterPukCode[] = "enterPukCode"; | 43 const char kJsApiEnterPukCode[] = "enterPukCode"; |
| 42 const char kJsApiProceedToPukInput[] = "proceedToPukInput"; | 44 const char kJsApiProceedToPukInput[] = "proceedToPukInput"; |
| 43 const char kJsApiSimStatusInitialize[] = "simStatusInitialize"; | 45 const char kJsApiSimStatusInitialize[] = "simStatusInitialize"; |
| (...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 SimUnlockHandler* handler = new SimUnlockHandler(); | 666 SimUnlockHandler* handler = new SimUnlockHandler(); |
| 665 AddMessageHandler(handler); | 667 AddMessageHandler(handler); |
| 666 SimUnlockUIHTMLSource* html_source = new SimUnlockUIHTMLSource(); | 668 SimUnlockUIHTMLSource* html_source = new SimUnlockUIHTMLSource(); |
| 667 | 669 |
| 668 // Set up the chrome://sim-unlock/ source. | 670 // Set up the chrome://sim-unlock/ source. |
| 669 Profile* profile = Profile::FromBrowserContext(contents->GetBrowserContext()); | 671 Profile* profile = Profile::FromBrowserContext(contents->GetBrowserContext()); |
| 670 profile->GetChromeURLDataManager()->AddDataSource(html_source); | 672 profile->GetChromeURLDataManager()->AddDataSource(html_source); |
| 671 } | 673 } |
| 672 | 674 |
| 673 } // namespace chromeos | 675 } // namespace chromeos |
| OLD | NEW |