OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "ios/chrome/browser/ui/webui/version_handler.h" | 5 #include "ios/chrome/browser/ui/webui/version_handler.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/memory/scoped_ptr.h" | |
10 #include "base/values.h" | 9 #include "base/values.h" |
11 #include "components/version_ui/version_handler_helper.h" | 10 #include "components/version_ui/version_handler_helper.h" |
12 #include "components/version_ui/version_ui_constants.h" | 11 #include "components/version_ui/version_ui_constants.h" |
13 #include "ios/public/provider/web/web_ui_ios.h" | 12 #include "ios/public/provider/web/web_ui_ios.h" |
14 #include "ui/base/l10n/l10n_util.h" | 13 #include "ui/base/l10n/l10n_util.h" |
15 | 14 |
16 VersionHandler::VersionHandler() {} | 15 VersionHandler::VersionHandler() {} |
17 | 16 |
18 VersionHandler::~VersionHandler() {} | 17 VersionHandler::~VersionHandler() {} |
19 | 18 |
20 void VersionHandler::RegisterMessages() { | 19 void VersionHandler::RegisterMessages() { |
21 web_ui()->RegisterMessageCallback( | 20 web_ui()->RegisterMessageCallback( |
22 version_ui::kRequestVersionInfo, | 21 version_ui::kRequestVersionInfo, |
23 base::Bind(&VersionHandler::HandleRequestVersionInfo, | 22 base::Bind(&VersionHandler::HandleRequestVersionInfo, |
24 base::Unretained(this))); | 23 base::Unretained(this))); |
25 } | 24 } |
26 | 25 |
27 void VersionHandler::HandleRequestVersionInfo(const base::ListValue* args) { | 26 void VersionHandler::HandleRequestVersionInfo(const base::ListValue* args) { |
28 // Respond with the variations info immediately. | 27 // Respond with the variations info immediately. |
29 web_ui()->CallJavascriptFunction(version_ui::kReturnVariationInfo, | 28 web_ui()->CallJavascriptFunction(version_ui::kReturnVariationInfo, |
30 *version_ui::GetVariationsList()); | 29 *version_ui::GetVariationsList()); |
31 } | 30 } |
OLD | NEW |