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

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

Issue 2392893002: Remove PermissionController.* files (Closed)
Patch Set: Created 4 years, 2 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/modules/permissions/PermissionController.cpp ('k') | no next file » | 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 #include "core/layout/compositing/CompositedSelection.h" 51 #include "core/layout/compositing/CompositedSelection.h"
52 #include "core/loader/DocumentLoader.h" 52 #include "core/loader/DocumentLoader.h"
53 #include "core/loader/FrameLoadRequest.h" 53 #include "core/loader/FrameLoadRequest.h"
54 #include "core/page/Page.h" 54 #include "core/page/Page.h"
55 #include "core/page/PopupOpeningObserver.h" 55 #include "core/page/PopupOpeningObserver.h"
56 #include "modules/accessibility/AXObject.h" 56 #include "modules/accessibility/AXObject.h"
57 #include "modules/audio_output_devices/AudioOutputDeviceClient.h" 57 #include "modules/audio_output_devices/AudioOutputDeviceClient.h"
58 #include "modules/bluetooth/BluetoothSupplement.h" 58 #include "modules/bluetooth/BluetoothSupplement.h"
59 #include "modules/installedapp/InstalledAppController.h" 59 #include "modules/installedapp/InstalledAppController.h"
60 #include "modules/mediastream/UserMediaController.h" 60 #include "modules/mediastream/UserMediaController.h"
61 #include "modules/permissions/PermissionController.h"
62 #include "modules/presentation/PresentationController.h" 61 #include "modules/presentation/PresentationController.h"
63 #include "modules/push_messaging/PushController.h" 62 #include "modules/push_messaging/PushController.h"
64 #include "modules/screen_orientation/ScreenOrientationController.h" 63 #include "modules/screen_orientation/ScreenOrientationController.h"
65 #include "modules/vr/VRController.h" 64 #include "modules/vr/VRController.h"
66 #include "platform/Cursor.h" 65 #include "platform/Cursor.h"
67 #include "platform/FileChooser.h" 66 #include "platform/FileChooser.h"
68 #include "platform/Histogram.h" 67 #include "platform/Histogram.h"
69 #include "platform/KeyboardCodes.h" 68 #include "platform/KeyboardCodes.h"
70 #include "platform/RuntimeEnabledFeatures.h" 69 #include "platform/RuntimeEnabledFeatures.h"
71 #include "platform/exported/WrappedResourceRequest.h" 70 #include "platform/exported/WrappedResourceRequest.h"
(...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after
1170 if (RuntimeEnabledFeatures::presentationEnabled()) 1169 if (RuntimeEnabledFeatures::presentationEnabled())
1171 PresentationController::provideTo(frame, client->presentationClient()); 1170 PresentationController::provideTo(frame, client->presentationClient());
1172 if (RuntimeEnabledFeatures::audioOutputDevicesEnabled()) 1171 if (RuntimeEnabledFeatures::audioOutputDevicesEnabled())
1173 provideAudioOutputDeviceClientTo(frame, 1172 provideAudioOutputDeviceClientTo(frame,
1174 AudioOutputDeviceClientImpl::create()); 1173 AudioOutputDeviceClientImpl::create());
1175 if (RuntimeEnabledFeatures::installedAppEnabled()) 1174 if (RuntimeEnabledFeatures::installedAppEnabled())
1176 InstalledAppController::provideTo(frame, client->installedAppClient()); 1175 InstalledAppController::provideTo(frame, client->installedAppClient());
1177 } 1176 }
1178 1177
1179 } // namespace blink 1178 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/permissions/PermissionController.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698