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

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

Issue 14323004: Make Frame's ScriptController an OwnPtr and remove the #include (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix 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/Page.cpp ('k') | Source/core/xml/XMLHttpRequest.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) 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 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "PageGroup.h" 27 #include "PageGroup.h"
28 28
29 #include "CaptionUserPreferences.h" 29 #include "CaptionUserPreferences.h"
30 #include "Chrome.h" 30 #include "Chrome.h"
31 #include "ChromeClient.h" 31 #include "ChromeClient.h"
32 #include "DOMWrapperWorld.h"
32 #include "Document.h" 33 #include "Document.h"
33 #include "DocumentStyleSheetCollection.h" 34 #include "DocumentStyleSheetCollection.h"
34 #include "Frame.h" 35 #include "Frame.h"
35 #include "GroupSettings.h" 36 #include "GroupSettings.h"
36 #include "Page.h" 37 #include "Page.h"
37 #include "PageCache.h" 38 #include "PageCache.h"
38 #include "SecurityOrigin.h" 39 #include "SecurityOrigin.h"
39 #include "Settings.h" 40 #include "Settings.h"
40 #include "StorageNamespace.h" 41 #include "StorageNamespace.h"
41 42
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 CaptionUserPreferences* PageGroup::captionPreferences() 292 CaptionUserPreferences* PageGroup::captionPreferences()
292 { 293 {
293 if (!m_captionPreferences) 294 if (!m_captionPreferences)
294 m_captionPreferences = CaptionUserPreferences::create(this); 295 m_captionPreferences = CaptionUserPreferences::create(this);
295 296
296 return m_captionPreferences.get(); 297 return m_captionPreferences.get();
297 } 298 }
298 299
299 300
300 } // namespace WebCore 301 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/Page.cpp ('k') | Source/core/xml/XMLHttpRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698