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

Side by Side Diff: third_party/WebKit/WebCore/inspector/front-end/inspector.js

Issue 21184: WebKit merge 40722:40785 (part 1) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 10 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). 3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 789
790 if (this.panels.resources) 790 if (this.panels.resources)
791 this.panels.resources.removeResource(resource); 791 this.panels.resources.removeResource(resource);
792 } 792 }
793 793
794 WebInspector.addDatabase = function(database) 794 WebInspector.addDatabase = function(database)
795 { 795 {
796 this.panels.databases.addDatabase(database); 796 this.panels.databases.addDatabase(database);
797 } 797 }
798 798
799 WebInspector.addDOMStorage = function(domStorage)
800 {
801 this.panels.databases.addDOMStorage(domStorage);
802 }
803
799 WebInspector.debuggerWasEnabled = function() 804 WebInspector.debuggerWasEnabled = function()
800 { 805 {
801 this.panels.scripts.debuggerWasEnabled(); 806 this.panels.scripts.debuggerWasEnabled();
802 } 807 }
803 808
804 WebInspector.debuggerWasDisabled = function() 809 WebInspector.debuggerWasDisabled = function()
805 { 810 {
806 this.panels.scripts.debuggerWasDisabled(); 811 this.panels.scripts.debuggerWasDisabled();
807 } 812 }
808 813
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
1289 }; 1294 };
1290 1295
1291 InspectorController.clearMessages = function() { 1296 InspectorController.clearMessages = function() {
1292 }; 1297 };
1293 1298
1294 InspectorController.setAttachedWindowHeight = function(height) { 1299 InspectorController.setAttachedWindowHeight = function(height) {
1295 }; 1300 };
1296 1301
1297 InspectorController.moveByUnrestricted = function(x, y) { 1302 InspectorController.moveByUnrestricted = function(x, y) {
1298 }; 1303 };
OLDNEW
« no previous file with comments | « third_party/WebKit/WebCore/inspector/front-end/inspector.html ('k') | third_party/WebKit/WebCore/loader/DocumentLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698