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

Side by Side Diff: Source/devtools/front_end/host/InspectorFrontendHost.js

Issue 1066813003: DevTools: allow storing devtools preferences on the browser side. [blink] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 200
201 /** 201 /**
202 * @param {string} url 202 * @param {string} url
203 * @param {string} headers 203 * @param {string} headers
204 * @param {number} streamId 204 * @param {number} streamId
205 * @param {function(!InspectorFrontendHostAPI.LoadNetworkResourceResult)} ca llback 205 * @param {function(!InspectorFrontendHostAPI.LoadNetworkResourceResult)} ca llback
206 */ 206 */
207 loadNetworkResource: function(url, headers, streamId, callback) { }, 207 loadNetworkResource: function(url, headers, streamId, callback) { },
208 208
209 /** 209 /**
210 * @param {function(!Object<string, string>)} callback
211 */
212 getPreferences: function(callback) { },
213
214 /**
215 * @param {string} name
216 * @param {string} value
217 */
218 setPreference: function(name, value) { },
219
220 /**
221 * @param {string} name
222 */
223 removePreference: function(name) { },
224
225 clearPreferences: function() { },
226
227 /**
210 * @param {!FileSystem} fileSystem 228 * @param {!FileSystem} fileSystem
211 */ 229 */
212 upgradeDraggedFileSystemPermissions: function(fileSystem) { }, 230 upgradeDraggedFileSystemPermissions: function(fileSystem) { },
213 231
214 /** 232 /**
215 * @return {string} 233 * @return {string}
216 */ 234 */
217 platform: function() { }, 235 platform: function() { },
218 236
219 /** 237 /**
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 * @param {number} streamId 513 * @param {number} streamId
496 * @param {function(!InspectorFrontendHostAPI.LoadNetworkResourceResult)} ca llback 514 * @param {function(!InspectorFrontendHostAPI.LoadNetworkResourceResult)} ca llback
497 */ 515 */
498 loadNetworkResource: function(url, headers, streamId, callback) 516 loadNetworkResource: function(url, headers, streamId, callback)
499 { 517 {
500 callback({statusCode : 404}); 518 callback({statusCode : 404});
501 }, 519 },
502 520
503 /** 521 /**
504 * @override 522 * @override
523 * @param {function(!Object<string, string>)} callback
524 */
525 getPreferences: function(callback)
526 {
527 callback({});
528 },
529
530 /**
531 * @override
532 * @param {string} name
533 * @param {string} value
534 */
535 setPreference: function(name, value)
dgozman 2015/04/13 14:25:38 Implement stub based on localStorage.
pfeldman 2015/04/13 16:03:38 Done.
536 {
537 },
538
539 /**
540 * @override
541 * @param {string} name
542 */
543 removePreference: function(name)
544 {
545 },
546
547 /**
548 * @override
549 */
550 clearPreferences: function()
551 {
552 },
553
554 /**
555 * @override
505 * @param {!FileSystem} fileSystem 556 * @param {!FileSystem} fileSystem
506 */ 557 */
507 upgradeDraggedFileSystemPermissions: function(fileSystem) 558 upgradeDraggedFileSystemPermissions: function(fileSystem)
508 { 559 {
509 }, 560 },
510 561
511 /** 562 /**
512 * @override 563 * @override
513 * @param {number} requestId 564 * @param {number} requestId
514 * @param {string} fileSystemPath 565 * @param {string} fileSystemPath
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 // so the host instance should not initialized there. 764 // so the host instance should not initialized there.
714 initializeInspectorFrontendHost(); 765 initializeInspectorFrontendHost();
715 window.InspectorFrontendAPI = new InspectorFrontendAPIImpl(); 766 window.InspectorFrontendAPI = new InspectorFrontendAPIImpl();
716 if (!window.DevToolsHost) { 767 if (!window.DevToolsHost) {
717 WebInspector.setLocalizationPlatform(InspectorFrontendHost.platform()); 768 WebInspector.setLocalizationPlatform(InspectorFrontendHost.platform());
718 } else { 769 } else {
719 WebInspector.setLocalizationPlatform(DevToolsHost.platform()); 770 WebInspector.setLocalizationPlatform(DevToolsHost.platform());
720 } 771 }
721 772
722 })(); 773 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698