Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: ios/chrome/browser/ui/webui/version_handler.cc

Issue 1418653004: [iOS] Support for chrome://version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comment from blundell Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/chrome/browser/ui/webui/version_handler.h ('k') | ios/chrome/browser/ui/webui/version_ui.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ios/chrome/browser/ui/webui/version_handler.h"
6
7 #include "base/bind.h"
8 #include "base/bind_helpers.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/values.h"
11 #include "components/version_ui/version_handler_helper.h"
12 #include "components/version_ui/version_ui_constants.h"
13 #include "ios/public/provider/web/web_ui_ios.h"
14 #include "ui/base/l10n/l10n_util.h"
15
16 VersionHandler::VersionHandler() {}
17
18 VersionHandler::~VersionHandler() {}
19
20 void VersionHandler::RegisterMessages() {
21 web_ui()->RegisterMessageCallback(
22 version_ui::kRequestVersionInfo,
23 base::Bind(&VersionHandler::HandleRequestVersionInfo,
24 base::Unretained(this)));
25 }
26
27 void VersionHandler::HandleRequestVersionInfo(const base::ListValue* args) {
28 // Respond with the variations info immediately.
29 web_ui()->CallJavascriptFunction(version_ui::kReturnVariationInfo,
30 *version_ui::GetVariationsList());
31 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/webui/version_handler.h ('k') | ios/chrome/browser/ui/webui/version_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698