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

Unified Diff: tracing/tracing/extras/chrome/render_frame.html

Issue 2016213002: Introduce base classes for blame contexts (Closed) Base URL: https://github.com/catapult-project/catapult.git@master
Patch Set: Remove isTracedByRenderer from blame_context_test.html Created 4 years, 7 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 | « tracing/tracing/extras/chrome/frame_tree_node.html ('k') | tracing/tracing/extras/chrome_config.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/extras/chrome/render_frame.html
diff --git a/tracing/tracing/extras/chrome/render_frame.html b/tracing/tracing/extras/chrome/render_frame.html
deleted file mode 100644
index 8703e55d74147d3568e1c844698a9ee254b7d0b3..0000000000000000000000000000000000000000
--- a/tracing/tracing/extras/chrome/render_frame.html
+++ /dev/null
@@ -1,66 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 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.
--->
-
-<link rel="import" href="/tracing/model/object_instance.html">
-
-<script>
-'use strict';
-
-tr.exportTo('tr.e.chrome', function() {
- var constants = tr.e.cc.constants;
-
- var ObjectSnapshot = tr.model.ObjectSnapshot;
- var ObjectInstance = tr.model.ObjectInstance;
-
- function RenderFrameSnapshot() {
- ObjectSnapshot.apply(this, arguments);
- }
-
- RenderFrameSnapshot.prototype = {
- __proto__: ObjectSnapshot.prototype,
-
- preInitialize: function() {
- },
-
- initialize: function() {
- },
-
- referencedAt: function(item, object, field) {
- if (item instanceof tr.e.chrome.FrameTreeNodeSnapshot &&
- object === item.args &&
- field === 'RenderFrame') {
- this.args.frameTreeNode = item;
- }
- },
-
- get userFriendlyName() {
- return 'RenderFrame';
- }
- };
-
- ObjectSnapshot.register(
- RenderFrameSnapshot,
- {typeName: 'RenderFrame'});
-
- function RenderFrameInstance() {
- ObjectInstance.apply(this, arguments);
- }
-
- RenderFrameInstance.prototype = {
- __proto__: ObjectInstance.prototype
- };
-
- ObjectInstance.register(
- RenderFrameInstance,
- {typeName: 'RenderFrame'});
-
- return {
- RenderFrameSnapshot: RenderFrameSnapshot,
- RenderFrameInstance: RenderFrameInstance
- };
-});
-</script>
« no previous file with comments | « tracing/tracing/extras/chrome/frame_tree_node.html ('k') | tracing/tracing/extras/chrome_config.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698