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

Unified Diff: chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/devtools.js

Issue 9289057: Changing manifest to v2 extension samples (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Adding zip files after rebasing with master Created 8 years, 11 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
Index: chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/devtools.js
diff --git a/chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/devtools.html b/chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/devtools.js
similarity index 82%
copy from chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/devtools.html
copy to chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/devtools.js
index a83ffd2c6d2f1bf130c4b9ade01834df88e1bcd2..5bf6a83001c55ccc752bce854c6d2dea9243bfee 100644
--- a/chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/devtools.html
+++ b/chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/devtools.js
@@ -1,6 +1,7 @@
-<html>
-<body>
-<script type="text/javascript">
+// Copyright (c) 2012 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.
+
// The function below is executed in the context of the inspected page.
var page_getProperties = function() {
var data = window.jQuery && $0 ? jQuery.data($0) : {};
@@ -23,6 +24,3 @@ chrome.devtools.panels.elements.createSidebarPane(
chrome.devtools.panels.elements.onSelectionChanged.addListener(
updateElementProperties);
});
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698