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

Side by Side Diff: Source/devtools/front_end/documentation/JSArticle.js

Issue 455343002: DevTools: Add new DocumentationURLProvider sources and some tests for documentation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase master Created 6 years, 4 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 unified diff | Download patch
« no previous file with comments | « Source/devtools/front_end/documentation/DocumentationURLProvider.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @constructor 6 * @constructor
7 */ 7 */
8 WebInspector.JSArticle = function() 8 WebInspector.JSArticle = function()
9 { 9 {
10 /** @type {string} */ 10 /** @type {string} */
(...skipping 22 matching lines...) Expand all
33 article.pageTitle = wikiDocument["Page_Title"]; 33 article.pageTitle = wikiDocument["Page_Title"];
34 if (typeof wikiDocument["Standardization_Status"] !== "undefined") 34 if (typeof wikiDocument["Standardization_Status"] !== "undefined")
35 article.standardizationStatus = wikiDocument["Standardization_Status"]; 35 article.standardizationStatus = wikiDocument["Standardization_Status"];
36 if (typeof wikiDocument["Summary_Section"] !== "undefined") 36 if (typeof wikiDocument["Summary_Section"] !== "undefined")
37 article.summary = wikiDocument["Summary_Section"]; 37 article.summary = wikiDocument["Summary_Section"];
38 if (typeof wikiDocument["API_Object_Method"] !== "undefined") 38 if (typeof wikiDocument["API_Object_Method"] !== "undefined")
39 article.methods = wikiDocument["API_Object_Method"]; 39 article.methods = wikiDocument["API_Object_Method"];
40 if (typeof wikiDocument["Remarks_Section"] !== "undefined") 40 if (typeof wikiDocument["Remarks_Section"] !== "undefined")
41 article.remarks = wikiDocument["Remarks_Section"]; 41 article.remarks = wikiDocument["Remarks_Section"];
42 42
43
apavlov 2014/08/11 15:13:35 Please revert this before landing
iliia 2014/08/12 07:53:32 Done.
43 return article; 44 return article;
44 } 45 }
45 46
OLDNEW
« no previous file with comments | « Source/devtools/front_end/documentation/DocumentationURLProvider.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698