| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google 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 28 matching lines...) Expand all Loading... |
| 39 #include "core/inspector/InspectorState.h" | 39 #include "core/inspector/InspectorState.h" |
| 40 #include "core/inspector/InstrumentingAgents.h" | 40 #include "core/inspector/InstrumentingAgents.h" |
| 41 #include "core/frame/DOMWindow.h" | 41 #include "core/frame/DOMWindow.h" |
| 42 #include "core/frame/Frame.h" | 42 #include "core/frame/Frame.h" |
| 43 #include "core/page/Page.h" | 43 #include "core/page/Page.h" |
| 44 #include "core/page/PageGroup.h" | 44 #include "core/page/PageGroup.h" |
| 45 #include "core/storage/Storage.h" | 45 #include "core/storage/Storage.h" |
| 46 #include "core/storage/StorageArea.h" | 46 #include "core/storage/StorageArea.h" |
| 47 #include "core/storage/StorageNamespace.h" | 47 #include "core/storage/StorageNamespace.h" |
| 48 #include "platform/JSONValues.h" | 48 #include "platform/JSONValues.h" |
| 49 #include "weborigin/SecurityOrigin.h" | 49 #include "platform/weborigin/SecurityOrigin.h" |
| 50 | 50 |
| 51 namespace WebCore { | 51 namespace WebCore { |
| 52 | 52 |
| 53 namespace DOMStorageAgentState { | 53 namespace DOMStorageAgentState { |
| 54 static const char domStorageAgentEnabled[] = "domStorageAgentEnabled"; | 54 static const char domStorageAgentEnabled[] = "domStorageAgentEnabled"; |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 static bool hadException(ExceptionState& es, ErrorString* errorString) | 57 static bool hadException(ExceptionState& es, ErrorString* errorString) |
| 58 { | 58 { |
| 59 if (!es.hadException()) | 59 if (!es.hadException()) |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 } | 225 } |
| 226 targetFrame = frame; | 226 targetFrame = frame; |
| 227 | 227 |
| 228 if (isLocalStorage) | 228 if (isLocalStorage) |
| 229 return StorageNamespace::localStorageArea(frame->document()->securityOri
gin()); | 229 return StorageNamespace::localStorageArea(frame->document()->securityOri
gin()); |
| 230 return m_pageAgent->page()->sessionStorage()->storageArea(frame->document()-
>securityOrigin()); | 230 return m_pageAgent->page()->sessionStorage()->storageArea(frame->document()-
>securityOrigin()); |
| 231 } | 231 } |
| 232 | 232 |
| 233 } // namespace WebCore | 233 } // namespace WebCore |
| 234 | 234 |
| OLD | NEW |