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

Unified Diff: extensions/renderer/string_source_map.h

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/module_system_test.cc ('k') | extensions/renderer/string_source_map.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/string_source_map.h
diff --git a/extensions/renderer/string_source_map.h b/extensions/renderer/string_source_map.h
new file mode 100644
index 0000000000000000000000000000000000000000..df3f60fed0deab0ab83ccbae7c0cfc8d160beb28
--- /dev/null
+++ b/extensions/renderer/string_source_map.h
@@ -0,0 +1,39 @@
+// 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.
+
+#ifndef EXTENSIONS_RENDERER_STRING_SOURCE_MAP_H_
+#define EXTENSIONS_RENDERER_STRING_SOURCE_MAP_H_
+
+#include <map>
+#include <string>
+
+#include "base/macros.h"
+#include "extensions/renderer/source_map.h"
+
+namespace extensions {
+
+// A testing implementation of the source map that takes strings for source
+// contents.
+class StringSourceMap : public SourceMap {
+ public:
+ StringSourceMap();
+ ~StringSourceMap() override;
+
+ // Adds a new string to be used in the source map.
+ void RegisterModule(const std::string& name, const std::string& source);
+
+ // SourceMap:
+ v8::Local<v8::String> GetSource(v8::Isolate* isolate,
+ const std::string& name) const override;
+ bool Contains(const std::string& name) const override;
+
+ private:
+ std::map<std::string, std::string> sources_;
+
+ DISALLOW_COPY_AND_ASSIGN(StringSourceMap);
+};
+
+} // namespace extensions
+
+#endif // EXTENSIONS_RENDERER_STRING_SOURCE_MAP_H_
« no previous file with comments | « extensions/renderer/module_system_test.cc ('k') | extensions/renderer/string_source_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698