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

Unified Diff: extensions/renderer/string_source_map.cc

Issue 2586303002: [Extensions Bindings] Pull out test resources (Closed)
Patch Set: comment Created 4 years 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 | « extensions/renderer/string_source_map.h ('k') | extensions/renderer/test_v8_extension_configuration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/string_source_map.cc
diff --git a/extensions/renderer/string_source_map.cc b/extensions/renderer/string_source_map.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1e2d184f0e9ef3917c7be3d4472c8990de443498
--- /dev/null
+++ b/extensions/renderer/string_source_map.cc
@@ -0,0 +1,34 @@
+// Copyright 2016 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 "extensions/renderer/string_source_map.h"
+
+#include "gin/converter.h"
+
+namespace extensions {
+
+StringSourceMap::StringSourceMap() {}
+StringSourceMap::~StringSourceMap() {}
+
+v8::Local<v8::String> StringSourceMap::GetSource(
+ v8::Isolate* isolate,
+ const std::string& name) const {
+ const auto& iter = sources_.find(name);
+ if (iter == sources_.end())
+ return v8::Local<v8::String>();
+ return gin::StringToV8(isolate, iter->second);
+}
+
+bool StringSourceMap::Contains(const std::string& name) const {
+ return sources_.find(name) != sources_.end();
+}
+
+void StringSourceMap::RegisterModule(const std::string& name,
+ const std::string& source) {
+ CHECK_EQ(0u, sources_.count(name)) << "A module for '" << name
+ << "' already exists.";
+ sources_[name] = source;
+}
+
+} // namespace extensions
« no previous file with comments | « extensions/renderer/string_source_map.h ('k') | extensions/renderer/test_v8_extension_configuration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698