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

Side by Side Diff: third_party/WebKit/Source/web/ChromeClientImpl.cpp

Issue 2874713002: Move many standalone files from web/ to (core|modules)/exported/. (Closed)
Patch Set: Rebase Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/web/BUILD.gn ('k') | third_party/WebKit/Source/web/WebCSSParser.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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google 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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 21 matching lines...) Expand all
32 #include "web/ChromeClientImpl.h" 32 #include "web/ChromeClientImpl.h"
33 33
34 #include <memory> 34 #include <memory>
35 #include "bindings/core/v8/ScriptController.h" 35 #include "bindings/core/v8/ScriptController.h"
36 #include "core/HTMLNames.h" 36 #include "core/HTMLNames.h"
37 #include "core/dom/AXObjectCache.h" 37 #include "core/dom/AXObjectCache.h"
38 #include "core/dom/Document.h" 38 #include "core/dom/Document.h"
39 #include "core/dom/Fullscreen.h" 39 #include "core/dom/Fullscreen.h"
40 #include "core/dom/Node.h" 40 #include "core/dom/Node.h"
41 #include "core/events/UIEventWithKeyState.h" 41 #include "core/events/UIEventWithKeyState.h"
42 #include "core/exported/WebFileChooserCompletionImpl.h"
42 #include "core/exported/WebViewBase.h" 43 #include "core/exported/WebViewBase.h"
43 #include "core/frame/FrameView.h" 44 #include "core/frame/FrameView.h"
44 #include "core/frame/Settings.h" 45 #include "core/frame/Settings.h"
45 #include "core/frame/VisualViewport.h" 46 #include "core/frame/VisualViewport.h"
46 #include "core/html/HTMLInputElement.h" 47 #include "core/html/HTMLInputElement.h"
47 #include "core/html/forms/ColorChooser.h" 48 #include "core/html/forms/ColorChooser.h"
48 #include "core/html/forms/ColorChooserClient.h" 49 #include "core/html/forms/ColorChooserClient.h"
49 #include "core/html/forms/DateTimeChooser.h" 50 #include "core/html/forms/DateTimeChooser.h"
50 #include "core/layout/HitTestResult.h" 51 #include "core/layout/HitTestResult.h"
51 #include "core/layout/LayoutPart.h" 52 #include "core/layout/LayoutPart.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 #include "web/ColorChooserPopupUIController.h" 112 #include "web/ColorChooserPopupUIController.h"
112 #include "web/ColorChooserUIController.h" 113 #include "web/ColorChooserUIController.h"
113 #include "web/DateTimeChooserImpl.h" 114 #include "web/DateTimeChooserImpl.h"
114 #include "web/DevToolsEmulator.h" 115 #include "web/DevToolsEmulator.h"
115 #include "web/ExternalDateTimeChooser.h" 116 #include "web/ExternalDateTimeChooser.h"
116 #include "web/ExternalPopupMenu.h" 117 #include "web/ExternalPopupMenu.h"
117 #include "web/IndexedDBClientImpl.h" 118 #include "web/IndexedDBClientImpl.h"
118 #include "web/LocalFileSystemClient.h" 119 #include "web/LocalFileSystemClient.h"
119 #include "web/NavigatorContentUtilsClientImpl.h" 120 #include "web/NavigatorContentUtilsClientImpl.h"
120 #include "web/PopupMenuImpl.h" 121 #include "web/PopupMenuImpl.h"
121 #include "web/WebFileChooserCompletionImpl.h"
122 #include "web/WebFrameWidgetImpl.h" 122 #include "web/WebFrameWidgetImpl.h"
123 #include "web/WebInputEventConversion.h" 123 #include "web/WebInputEventConversion.h"
124 #include "web/WebLocalFrameImpl.h" 124 #include "web/WebLocalFrameImpl.h"
125 #include "web/WebPluginContainerImpl.h" 125 #include "web/WebPluginContainerImpl.h"
126 #include "web/WebSettingsImpl.h" 126 #include "web/WebSettingsImpl.h"
127 127
128 namespace blink { 128 namespace blink {
129 129
130 namespace { 130 namespace {
131 131
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after
1245 if (RuntimeEnabledFeatures::presentationEnabled()) 1245 if (RuntimeEnabledFeatures::presentationEnabled())
1246 PresentationController::ProvideTo(frame, client->PresentationClient()); 1246 PresentationController::ProvideTo(frame, client->PresentationClient());
1247 if (RuntimeEnabledFeatures::audioOutputDevicesEnabled()) { 1247 if (RuntimeEnabledFeatures::audioOutputDevicesEnabled()) {
1248 ProvideAudioOutputDeviceClientTo(frame, 1248 ProvideAudioOutputDeviceClientTo(frame,
1249 new AudioOutputDeviceClientImpl(frame)); 1249 new AudioOutputDeviceClientImpl(frame));
1250 } 1250 }
1251 InstalledAppController::ProvideTo(frame, client->GetRelatedAppsFetcher()); 1251 InstalledAppController::ProvideTo(frame, client->GetRelatedAppsFetcher());
1252 } 1252 }
1253 1253
1254 } // namespace blink 1254 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/BUILD.gn ('k') | third_party/WebKit/Source/web/WebCSSParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698