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

Unified Diff: content/child/npapi/npruntime_util.cc

Issue 1483733002: Remove support for NPObjects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 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 | « content/child/npapi/npruntime_util.h ('k') | content/child/npapi/plugin_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/npruntime_util.cc
diff --git a/content/child/npapi/npruntime_util.cc b/content/child/npapi/npruntime_util.cc
deleted file mode 100644
index 2f80fa17953582971cc29972ee1d3c1a421cf255..0000000000000000000000000000000000000000
--- a/content/child/npapi/npruntime_util.cc
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright (c) 2013 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 "content/child/npapi/npruntime_util.h"
-
-#include <stddef.h>
-#include <stdint.h>
-
-#include "base/pickle.h"
-#include "third_party/WebKit/public/web/WebBindings.h"
-
-using blink::WebBindings;
-
-namespace content {
-
-bool SerializeNPIdentifier(NPIdentifier identifier, base::Pickle* pickle) {
- const NPUTF8* string;
- int32_t number;
- bool is_string;
- WebBindings::extractIdentifierData(identifier, string, number, is_string);
-
- if (!pickle->WriteBool(is_string))
- return false;
- if (is_string) {
- // Write the null byte for efficiency on the other end.
- return pickle->WriteData(string, strlen(string) + 1);
- }
- return pickle->WriteInt(number);
-}
-
-bool DeserializeNPIdentifier(base::PickleIterator* pickle_iter,
- NPIdentifier* identifier) {
- bool is_string;
- if (!pickle_iter->ReadBool(&is_string))
- return false;
-
- if (is_string) {
- const char* data;
- int data_len;
- if (!pickle_iter->ReadData(&data, &data_len))
- return false;
- DCHECK_EQ((static_cast<size_t>(data_len)), strlen(data) + 1);
- *identifier = WebBindings::getStringIdentifier(data);
- } else {
- int number;
- if (!pickle_iter->ReadInt(&number))
- return false;
- *identifier = WebBindings::getIntIdentifier(number);
- }
- return true;
-}
-
-} // namespace content
« no previous file with comments | « content/child/npapi/npruntime_util.h ('k') | content/child/npapi/plugin_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698