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

Side by Side Diff: Source/devtools/front_end/main/Main.js

Issue 476423003: [DevTools] Add interstitial events to Inspector domain. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: empty handling in frontend 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/devtools/protocol.json » ('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) 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698