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

Side by Side Diff: Source/core/inspector/InspectorDOMStorageAgent.cpp

Issue 25447002: Move JSONValues.cpp/.h to Source/platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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) 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 24 matching lines...) Expand all
35 #include "core/dom/DOMException.h" 35 #include "core/dom/DOMException.h"
36 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
37 #include "core/dom/ExceptionCode.h" 37 #include "core/dom/ExceptionCode.h"
38 #include "core/inspector/InspectorPageAgent.h" 38 #include "core/inspector/InspectorPageAgent.h"
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/page/DOMWindow.h" 41 #include "core/page/DOMWindow.h"
42 #include "core/page/Frame.h" 42 #include "core/page/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/platform/JSONValues.h"
46 #include "core/storage/Storage.h" 45 #include "core/storage/Storage.h"
47 #include "core/storage/StorageArea.h" 46 #include "core/storage/StorageArea.h"
48 #include "core/storage/StorageNamespace.h" 47 #include "core/storage/StorageNamespace.h"
48 #include "platform/JSONValues.h"
49 #include "weborigin/SecurityOrigin.h" 49 #include "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 {
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDOMDebuggerAgent.cpp ('k') | Source/core/inspector/InspectorDatabaseAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698