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

Side by Side Diff: Source/devtools/front_end/sdk/DOMStorage.js

Issue 881263002: DevTools: use target-based model accessors only. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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) 2008 Nokia Inc. All rights reserved. 2 * Copyright (C) 2008 Nokia Inc. All rights reserved.
3 * Copyright (C) 2013 Samsung Electronics. All rights reserved. 3 * Copyright (C) 2013 Samsung Electronics. All rights reserved.
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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 * @param {!DOMStorageAgent.StorageId} storageId 327 * @param {!DOMStorageAgent.StorageId} storageId
328 * @param {string} key 328 * @param {string} key
329 * @param {string} oldValue 329 * @param {string} oldValue
330 * @param {string} value 330 * @param {string} value
331 */ 331 */
332 domStorageItemUpdated: function(storageId, key, oldValue, value) 332 domStorageItemUpdated: function(storageId, key, oldValue, value)
333 { 333 {
334 this._model._domStorageItemUpdated(storageId, key, oldValue, value); 334 this._model._domStorageItemUpdated(storageId, key, oldValue, value);
335 }, 335 },
336 } 336 }
337
338 /**
339 * @type {!WebInspector.DOMStorageModel}
340 */
341 WebInspector.domStorageModel;
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/ContentProviders.js ('k') | Source/devtools/front_end/sdk/Database.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698