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

Side by Side Diff: Source/core/page/Page.cpp

Issue 13851012: Absolutify paths in core/storage. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 8 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
« no previous file with comments | « Source/core/page/Navigator.cpp ('k') | Source/core/page/PageGroup.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R ights Reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R ights Reserved.
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 #include "RenderArena.h" 65 #include "RenderArena.h"
66 #include "RenderTheme.h" 66 #include "RenderTheme.h"
67 #include "RenderView.h" 67 #include "RenderView.h"
68 #include "RenderWidget.h" 68 #include "RenderWidget.h"
69 #include "RuntimeEnabledFeatures.h" 69 #include "RuntimeEnabledFeatures.h"
70 #include "SchemeRegistry.h" 70 #include "SchemeRegistry.h"
71 #include "ScriptController.h" 71 #include "ScriptController.h"
72 #include "ScrollingCoordinator.h" 72 #include "ScrollingCoordinator.h"
73 #include "Settings.h" 73 #include "Settings.h"
74 #include "SharedBuffer.h" 74 #include "SharedBuffer.h"
75 #include "StorageArea.h"
76 #include "StorageNamespace.h"
77 #include "TextResourceDecoder.h" 75 #include "TextResourceDecoder.h"
78 #include "VisitedLinkState.h" 76 #include "VisitedLinkState.h"
79 #include "VoidCallback.h" 77 #include "VoidCallback.h"
80 #include "WebCoreMemoryInstrumentation.h" 78 #include "WebCoreMemoryInstrumentation.h"
81 #include "Widget.h" 79 #include "Widget.h"
80 #include "core/storage/StorageArea.h"
81 #include "core/storage/StorageNamespace.h"
82 #include <wtf/HashMap.h> 82 #include <wtf/HashMap.h>
83 #include <wtf/RefCountedLeakCounter.h> 83 #include <wtf/RefCountedLeakCounter.h>
84 #include <wtf/StdLibExtras.h> 84 #include <wtf/StdLibExtras.h>
85 #include <wtf/text/Base64.h> 85 #include <wtf/text/Base64.h>
86 #include <wtf/text/StringHash.h> 86 #include <wtf/text/StringHash.h>
87 87
88 namespace WebCore { 88 namespace WebCore {
89 89
90 static HashSet<Page*>* allPages; 90 static HashSet<Page*>* allPages;
91 91
(...skipping 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 , inspectorClient(0) 1182 , inspectorClient(0)
1183 , plugInClient(0) 1183 , plugInClient(0)
1184 { 1184 {
1185 } 1185 }
1186 1186
1187 Page::PageClients::~PageClients() 1187 Page::PageClients::~PageClients()
1188 { 1188 {
1189 } 1189 }
1190 1190
1191 } // namespace WebCore 1191 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/Navigator.cpp ('k') | Source/core/page/PageGroup.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698