| Index: third_party/WebKit/Source/devtools/front_end/profiler/ProfileTypeRegistry.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileTypeRegistry.js b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileTypeRegistry.js
|
| index 775359dea6196558e69ace89d813f3e77a773851..343971094392c344c67b29889bbf72b8bd1e4856 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileTypeRegistry.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileTypeRegistry.js
|
| @@ -17,7 +17,7 @@ WebInspector.ProfileTypeRegistry = function()
|
| this._addProfileType(this.trackingHeapSnapshotProfileType);
|
| this.samplingHeapProfileType = new WebInspector.SamplingHeapProfileType();
|
| this._addProfileType(this.samplingHeapProfileType);
|
| -}
|
| +};
|
|
|
| WebInspector.ProfileTypeRegistry.prototype = {
|
| /**
|
| @@ -35,6 +35,6 @@ WebInspector.ProfileTypeRegistry.prototype = {
|
| {
|
| return this._profileTypes;
|
| }
|
| -}
|
| +};
|
|
|
| WebInspector.ProfileTypeRegistry.instance = new WebInspector.ProfileTypeRegistry();
|
|
|