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

Unified Diff: ios/public/provider/web/web_ui_ios_message_handler.cc

Issue 2116673002: [ios] Moved WebUI provider code to ios/web. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Self review Created 4 years, 6 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/public/provider/web/web_ui_ios_message_handler.h ('k') | ios/web/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/public/provider/web/web_ui_ios_message_handler.cc
diff --git a/ios/public/provider/web/web_ui_ios_message_handler.cc b/ios/public/provider/web/web_ui_ios_message_handler.cc
deleted file mode 100644
index b4b473e012c33cc62075d58e3fa8f0518bfe2446..0000000000000000000000000000000000000000
--- a/ios/public/provider/web/web_ui_ios_message_handler.cc
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ios/public/provider/web/web_ui_ios_message_handler.h"
-
-#include "base/logging.h"
-#include "base/strings/string_number_conversions.h"
-#include "base/strings/utf_string_conversions.h"
-#include "base/values.h"
-
-namespace web {
-
-bool WebUIIOSMessageHandler::ExtractIntegerValue(const base::ListValue* value,
- int* out_int) {
- std::string string_value;
- if (value->GetString(0, &string_value))
- return base::StringToInt(string_value, out_int);
- double double_value;
- if (value->GetDouble(0, &double_value)) {
- *out_int = static_cast<int>(double_value);
- return true;
- }
- NOTREACHED();
- return false;
-}
-
-bool WebUIIOSMessageHandler::ExtractDoubleValue(const base::ListValue* value,
- double* out_value) {
- std::string string_value;
- if (value->GetString(0, &string_value))
- return base::StringToDouble(string_value, out_value);
- if (value->GetDouble(0, out_value))
- return true;
- NOTREACHED();
- return false;
-}
-
-base::string16 WebUIIOSMessageHandler::ExtractStringValue(
- const base::ListValue* value) {
- base::string16 string16_value;
- if (value->GetString(0, &string16_value))
- return string16_value;
- NOTREACHED();
- return base::string16();
-}
-
-} // namespace web
« no previous file with comments | « ios/public/provider/web/web_ui_ios_message_handler.h ('k') | ios/web/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698