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

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

Issue 13851012: Absolutify paths in core/storage. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ... 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 16 matching lines...) Expand all
27 #include "PageGroup.h" 27 #include "PageGroup.h"
28 28
29 #include "CaptionUserPreferences.h" 29 #include "CaptionUserPreferences.h"
30 #include "Document.h" 30 #include "Document.h"
31 #include "DocumentStyleSheetCollection.h" 31 #include "DocumentStyleSheetCollection.h"
32 #include "Frame.h" 32 #include "Frame.h"
33 #include "GroupSettings.h" 33 #include "GroupSettings.h"
34 #include "Page.h" 34 #include "Page.h"
35 #include "PageCache.h" 35 #include "PageCache.h"
36 #include "Settings.h" 36 #include "Settings.h"
37 #include "StorageNamespace.h" 37 #include "core/storage/StorageNamespace.h"
38 38
39 namespace WebCore { 39 namespace WebCore {
40 40
41 PageGroup::PageGroup() 41 PageGroup::PageGroup()
42 : m_groupSettings(GroupSettings::create()) 42 : m_groupSettings(GroupSettings::create())
43 { 43 {
44 } 44 }
45 45
46 PageGroup::~PageGroup() 46 PageGroup::~PageGroup()
47 { 47 {
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 CaptionUserPreferences* PageGroup::captionPreferences() 116 CaptionUserPreferences* PageGroup::captionPreferences()
117 { 117 {
118 if (!m_captionPreferences) 118 if (!m_captionPreferences)
119 m_captionPreferences = CaptionUserPreferences::create(this); 119 m_captionPreferences = CaptionUserPreferences::create(this);
120 120
121 return m_captionPreferences.get(); 121 return m_captionPreferences.get();
122 } 122 }
123 123
124 124
125 } // namespace WebCore 125 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698