OLD | NEW |
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 Loading... |
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; | |
OLD | NEW |