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

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

Issue 13976008: Remove more #includes from Frame.h (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/loader/FrameLoader.cpp ('k') | Source/core/page/Frame.h » ('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, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
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 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "DOMStringList.h" 43 #include "DOMStringList.h"
44 #include "DOMTimer.h" 44 #include "DOMTimer.h"
45 #include "DOMTokenList.h" 45 #include "DOMTokenList.h"
46 #include "DOMURL.h" 46 #include "DOMURL.h"
47 #include "DOMWindowCSS.h" 47 #include "DOMWindowCSS.h"
48 #include "DOMWindowNotifications.h" 48 #include "DOMWindowNotifications.h"
49 #include "DeviceMotionController.h" 49 #include "DeviceMotionController.h"
50 #include "DeviceOrientationController.h" 50 #include "DeviceOrientationController.h"
51 #include "Document.h" 51 #include "Document.h"
52 #include "DocumentLoader.h" 52 #include "DocumentLoader.h"
53 #include "Editor.h"
53 #include "Element.h" 54 #include "Element.h"
54 #include "EventException.h" 55 #include "EventException.h"
56 #include "EventHandler.h"
55 #include "EventListener.h" 57 #include "EventListener.h"
56 #include "EventNames.h" 58 #include "EventNames.h"
57 #include "ExceptionCode.h" 59 #include "ExceptionCode.h"
58 #include "ExceptionCodePlaceholder.h" 60 #include "ExceptionCodePlaceholder.h"
59 #include "FloatRect.h" 61 #include "FloatRect.h"
60 #include "FocusController.h" 62 #include "FocusController.h"
61 #include "Frame.h" 63 #include "Frame.h"
62 #include "FrameLoadRequest.h" 64 #include "FrameLoadRequest.h"
63 #include "FrameLoader.h" 65 #include "FrameLoader.h"
64 #include "FrameLoaderClient.h" 66 #include "FrameLoaderClient.h"
(...skipping 1875 matching lines...) Expand 10 before | Expand all | Expand 10 after
1940 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_fr ame->view())); 1942 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_fr ame->view()));
1941 Frame* dialogFrame = createWindow(urlString, emptyAtom, windowFeatures, 1943 Frame* dialogFrame = createWindow(urlString, emptyAtom, windowFeatures,
1942 activeWindow, firstFrame, m_frame, function, functionContext); 1944 activeWindow, firstFrame, m_frame, function, functionContext);
1943 if (!dialogFrame) 1945 if (!dialogFrame)
1944 return; 1946 return;
1945 UserGestureIndicatorDisabler disabler; 1947 UserGestureIndicatorDisabler disabler;
1946 dialogFrame->page()->chrome()->runModal(); 1948 dialogFrame->page()->chrome()->runModal();
1947 } 1949 }
1948 1950
1949 } // namespace WebCore 1951 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | Source/core/page/Frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698