Lines Matching full:permalink
37 // Permalink serialization has two layers:
46 // Permalink: {appState: {see above}, traceUrl: 'https://gcs/trace/file'}
106 // Serialize the permalink with the app state (or recording state) and upload.
107 updateStatus(`Creating permalink...`);
119 * Loads a permalink from Google Cloud Storage.
126 // Otherwise, this is a request to load the permalink.
130 throw new Error(`Could not fetch permalink.\n URL: ${url}`);
134 let permalink: PermalinkState;
141 permalink = convertedLegacyPermalink;
145 permalink = res.data;
148 permalink = {};
153 if (permalink.appState !== undefined) {
154 // This is the most common case where the permalink contains the app state
156 const parseRes = parseAppState(permalink.appState);
163 if (permalink.traceUrl) {
164 AppImpl.instance.openTraceFromUrl(permalink.traceUrl, serializedAppState);
176 'when the permalink is generated and then opened using ' +
198 // Tries to recover a previous permalink, before the split in two layers,
199 // where the permalink JSON contains the app state, which contains inside it
246 title: 'Permalink',