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

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

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Stale refernence to weboriginexport in .gpyi Created 7 years, 1 month 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 28 matching lines...) Expand all
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
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/InspectorAgent.cpp ('k') | Source/core/inspector/InspectorFileSystemAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698