OLD | NEW |
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 * Copyright (C) 2009 Joseph Pecoraro | 4 * Copyright (C) 2009 Joseph Pecoraro |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * | 9 * |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 }, | 625 }, |
626 | 626 |
627 /** | 627 /** |
628 * @override | 628 * @override |
629 * @param {number} callId | 629 * @param {number} callId |
630 * @param {string} script | 630 * @param {string} script |
631 */ | 631 */ |
632 evaluateForTestInFrontend: function(callId, script) | 632 evaluateForTestInFrontend: function(callId, script) |
633 { | 633 { |
634 WebInspector.evaluateForTestInFrontend(callId, script); | 634 WebInspector.evaluateForTestInFrontend(callId, script); |
| 635 }, |
| 636 |
| 637 /** |
| 638 * @override |
| 639 */ |
| 640 interstitialShown: function() |
| 641 { |
| 642 // Frontend is not interested in interstitials. |
| 643 }, |
| 644 |
| 645 /** |
| 646 * @override |
| 647 */ |
| 648 interstitialHidden: function() |
| 649 { |
| 650 // Frontend is not interested in interstitials. |
635 } | 651 } |
636 } | 652 } |
637 | 653 |
638 WebInspector.reload = function() | 654 WebInspector.reload = function() |
639 { | 655 { |
640 InspectorAgent.reset(); | 656 InspectorAgent.reset(); |
641 window.location.reload(); | 657 window.location.reload(); |
642 } | 658 } |
643 | 659 |
644 /** | 660 /** |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 | 924 |
909 WebInspector.Main.InspectedNodeRevealer.prototype = { | 925 WebInspector.Main.InspectedNodeRevealer.prototype = { |
910 /** | 926 /** |
911 * @param {!WebInspector.Event} event | 927 * @param {!WebInspector.Event} event |
912 */ | 928 */ |
913 _inspectNode: function(event) | 929 _inspectNode: function(event) |
914 { | 930 { |
915 WebInspector.Revealer.reveal(/** @type {!WebInspector.DOMNode} */ (event
.data)); | 931 WebInspector.Revealer.reveal(/** @type {!WebInspector.DOMNode} */ (event
.data)); |
916 } | 932 } |
917 } | 933 } |
OLD | NEW |