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

Side by Side Diff: webkit/glue/devtools/js/devtools.html

Issue 115681: switch to using native JSON object (Closed)
Patch Set: all in one Created 11 years, 6 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 | « chrome/test/render_view_test.cc ('k') | webkit/glue/devtools/js/json.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 Copyright (c) 2009 The Chromium Authors. All rights reserved.
3 3
4 This is the Chromium version of the WebInspector. This html file serves 4 This is the Chromium version of the WebInspector. This html file serves
5 as a deployment descriptor and specifies which js libraries to include into the 5 as a deployment descriptor and specifies which js libraries to include into the
6 app. Once the "main" frontend method that is building WebInspector 6 app. Once the "main" frontend method that is building WebInspector
7 from the js building blocks is extracted, we will be able have different 7 from the js building blocks is extracted, we will be able have different
8 implementations of it for Chromium and WebKit. That would allow us for 8 implementations of it for Chromium and WebKit. That would allow us for
9 example not to create WebKit Database tab and remove corresponding js files 9 example not to create WebKit Database tab and remove corresponding js files
10 from here. Longer term we would like to employ closure + basic js compilation. 10 from here. Longer term we would like to employ closure + basic js compilation.
(...skipping 26 matching lines...) Expand all
37 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 37 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 38 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 39 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 --> 40 -->
41 <!DOCTYPE html> 41 <!DOCTYPE html>
42 <html> 42 <html>
43 <head> 43 <head>
44 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 44 <meta http-equiv="content-type" content="text/html; charset=utf-8">
45 <link rel="stylesheet" type="text/css" href="inspector.css"> 45 <link rel="stylesheet" type="text/css" href="inspector.css">
46 <script type="text/javascript" src="base.js"></script> 46 <script type="text/javascript" src="base.js"></script>
47 <script type="text/javascript" src="json.js"></script>
48 <script type="text/javascript" src="utilities.js"></script> 47 <script type="text/javascript" src="utilities.js"></script>
49 <script type="text/javascript" src="treeoutline.js"></script> 48 <script type="text/javascript" src="treeoutline.js"></script>
50 <script type="text/javascript" src="devtools_callback.js"></script> 49 <script type="text/javascript" src="devtools_callback.js"></script>
51 <script type="text/javascript" src="debugger_agent.js"></script> 50 <script type="text/javascript" src="debugger_agent.js"></script>
52 <script type="text/javascript" src="dom_agent.js"></script> 51 <script type="text/javascript" src="dom_agent.js"></script>
53 <script type="text/javascript" src="inspector_controller.js"></script> 52 <script type="text/javascript" src="inspector_controller.js"></script>
54 <script type="text/javascript" src="inspector_controller_impl.js"></script> 53 <script type="text/javascript" src="inspector_controller_impl.js"></script>
55 <script type="text/javascript" src="inspector.js"></script> 54 <script type="text/javascript" src="inspector.js"></script>
56 <script type="text/javascript" src="codemap.js"></script> 55 <script type="text/javascript" src="codemap.js"></script>
57 <script type="text/javascript" src="consarray.js"></script> 56 <script type="text/javascript" src="consarray.js"></script>
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 <div id="main"> 114 <div id="main">
116 <div id="main-panels" tabindex="0"></div> 115 <div id="main-panels" tabindex="0"></div>
117 <div id="main-status-bar" class="status-bar"><div id="anchored-status-ba r-items"><button id="dock-status-bar-item" class="status-bar-item toggled"></but ton><button id="console-status-bar-item" class="status-bar-item"></button><div i d="error-warning-count" class="hidden"></div></div></div> 116 <div id="main-status-bar" class="status-bar"><div id="anchored-status-ba r-items"><button id="dock-status-bar-item" class="status-bar-item toggled"></but ton><button id="console-status-bar-item" class="status-bar-item"></button><div i d="error-warning-count" class="hidden"></div></div></div>
118 </div> 117 </div>
119 <div id="console"> 118 <div id="console">
120 <div id="console-messages"><div id="console-prompt"><br></div></div> 119 <div id="console-messages"><div id="console-prompt"><br></div></div>
121 <div id="console-status-bar" class="status-bar"><div id="other-console-s tatus-bar-items"><button id="clear-console-status-bar-item" class="status-bar-it em"></button></div></div> 120 <div id="console-status-bar" class="status-bar"><div id="other-console-s tatus-bar-items"><button id="clear-console-status-bar-item" class="status-bar-it em"></button></div></div>
122 </div> 121 </div>
123 </body> 122 </body>
124 </html> 123 </html>
OLDNEW
« no previous file with comments | « chrome/test/render_view_test.cc ('k') | webkit/glue/devtools/js/json.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698