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

Unified Diff: include/v8.h

Issue 2505823002: [inspector] removed deprecated ScriptOrigin cstor with is_embedder_debug_script (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 2b1f7db82811d892c95384f0ce6b1991dd265961..1a49fb38a75607f57c0e3f8e3a907b01284ae821 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -992,17 +992,6 @@ class ScriptOrigin {
Local<Value> source_map_url = Local<Value>(),
Local<Boolean> resource_is_opaque = Local<Boolean>());
- V8_DEPRECATE_SOON(
- "Use version without resource_is_embedder_debug_script flag",
- V8_INLINE ScriptOrigin(Local<Value> resource_name,
- Local<Integer> resource_line_offset,
- Local<Integer> resource_column_offset,
- Local<Boolean> resource_is_shared_cross_origin,
- Local<Integer> script_id,
- Local<Boolean> resource_is_embedder_debug_script,
- Local<Value> source_map_url,
- Local<Boolean> resource_is_opaque));
-
V8_INLINE Local<Value> ResourceName() const;
V8_INLINE Local<Integer> ResourceLineOffset() const;
V8_INLINE Local<Integer> ResourceColumnOffset() const;
@@ -8857,23 +8846,6 @@ ScriptOrigin::ScriptOrigin(Local<Value> resource_name,
Local<Integer> resource_column_offset,
Local<Boolean> resource_is_shared_cross_origin,
Local<Integer> script_id,
- Local<Boolean> resource_is_embedder_debug_script,
- Local<Value> source_map_url,
- Local<Boolean> resource_is_opaque)
- : resource_name_(resource_name),
- resource_line_offset_(resource_line_offset),
- resource_column_offset_(resource_column_offset),
- options_(!resource_is_shared_cross_origin.IsEmpty() &&
- resource_is_shared_cross_origin->IsTrue(),
- !resource_is_opaque.IsEmpty() && resource_is_opaque->IsTrue()),
- script_id_(script_id),
- source_map_url_(source_map_url) {}
-
-ScriptOrigin::ScriptOrigin(Local<Value> resource_name,
- Local<Integer> resource_line_offset,
- Local<Integer> resource_column_offset,
- Local<Boolean> resource_is_shared_cross_origin,
- Local<Integer> script_id,
Local<Value> source_map_url,
Local<Boolean> resource_is_opaque)
: resource_name_(resource_name),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698