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

Side by Side Diff: Source/web/WebLocalFrameImpl.cpp

Issue 1084923002: Wake Lock API implementation (Blink part) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Applied review comments Created 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 #include "core/paint/DeprecatedPaintLayer.h" 150 #include "core/paint/DeprecatedPaintLayer.h"
151 #include "core/timing/DOMWindowPerformance.h" 151 #include "core/timing/DOMWindowPerformance.h"
152 #include "core/timing/Performance.h" 152 #include "core/timing/Performance.h"
153 #include "modules/app_banner/AppBannerController.h" 153 #include "modules/app_banner/AppBannerController.h"
154 #include "modules/geolocation/GeolocationController.h" 154 #include "modules/geolocation/GeolocationController.h"
155 #include "modules/notifications/NotificationPermissionClient.h" 155 #include "modules/notifications/NotificationPermissionClient.h"
156 #include "modules/permissions/PermissionController.h" 156 #include "modules/permissions/PermissionController.h"
157 #include "modules/presentation/PresentationController.h" 157 #include "modules/presentation/PresentationController.h"
158 #include "modules/push_messaging/PushController.h" 158 #include "modules/push_messaging/PushController.h"
159 #include "modules/screen_orientation/ScreenOrientationController.h" 159 #include "modules/screen_orientation/ScreenOrientationController.h"
160 #include "modules/wake_lock/WakeLockController.h"
160 #include "platform/ScriptForbiddenScope.h" 161 #include "platform/ScriptForbiddenScope.h"
161 #include "platform/TraceEvent.h" 162 #include "platform/TraceEvent.h"
162 #include "platform/UserGestureIndicator.h" 163 #include "platform/UserGestureIndicator.h"
163 #include "platform/clipboard/ClipboardUtilities.h" 164 #include "platform/clipboard/ClipboardUtilities.h"
164 #include "platform/fonts/FontCache.h" 165 #include "platform/fonts/FontCache.h"
165 #include "platform/graphics/GraphicsContext.h" 166 #include "platform/graphics/GraphicsContext.h"
166 #include "platform/graphics/GraphicsLayerClient.h" 167 #include "platform/graphics/GraphicsLayerClient.h"
167 #include "platform/graphics/skia/SkiaUtils.h" 168 #include "platform/graphics/skia/SkiaUtils.h"
168 #include "platform/heap/Handle.h" 169 #include "platform/heap/Handle.h"
169 #include "platform/network/ResourceRequest.h" 170 #include "platform/network/ResourceRequest.h"
(...skipping 1464 matching lines...) Expand 10 before | Expand all | Expand 10 after
1634 if (m_client) 1635 if (m_client)
1635 providePushControllerTo(*m_frame, m_client->pushClient()); 1636 providePushControllerTo(*m_frame, m_client->pushClient());
1636 1637
1637 provideNotificationPermissionClientTo(*m_frame, NotificationPermissionCl ientImpl::create()); 1638 provideNotificationPermissionClientTo(*m_frame, NotificationPermissionCl ientImpl::create());
1638 provideUserMediaTo(*m_frame, &m_userMediaClientImpl); 1639 provideUserMediaTo(*m_frame, &m_userMediaClientImpl);
1639 provideGeolocationTo(*m_frame, m_geolocationClientProxy.get()); 1640 provideGeolocationTo(*m_frame, m_geolocationClientProxy.get());
1640 m_geolocationClientProxy->setController(GeolocationController::from(m_fr ame.get())); 1641 m_geolocationClientProxy->setController(GeolocationController::from(m_fr ame.get()));
1641 provideMIDITo(*m_frame, MIDIClientProxy::create(m_client ? m_client->web MIDIClient() : nullptr)); 1642 provideMIDITo(*m_frame, MIDIClientProxy::create(m_client ? m_client->web MIDIClient() : nullptr));
1642 provideLocalFileSystemTo(*m_frame, LocalFileSystemClient::create()); 1643 provideLocalFileSystemTo(*m_frame, LocalFileSystemClient::create());
1643 1644
1645 if (RuntimeEnabledFeatures::wakeLockEnabled())
1646 WakeLockController::provideTo(*m_frame, m_client ? m_client->wakeLoc kClient() : nullptr);
mlamouri (slow - plz ping) 2015/05/05 13:45:44 nit: could you append that to the block instead of
mlamouri (slow - plz ping) 2015/05/05 13:45:44 nit: could you append that to the block instead of
1644 if (RuntimeEnabledFeatures::screenOrientationEnabled()) 1647 if (RuntimeEnabledFeatures::screenOrientationEnabled())
1645 ScreenOrientationController::provideTo(*m_frame, m_client ? m_client ->webScreenOrientationClient() : nullptr); 1648 ScreenOrientationController::provideTo(*m_frame, m_client ? m_client ->webScreenOrientationClient() : nullptr);
1646 if (RuntimeEnabledFeatures::presentationEnabled()) 1649 if (RuntimeEnabledFeatures::presentationEnabled())
1647 PresentationController::provideTo(*m_frame, m_client ? m_client->pre sentationClient() : nullptr); 1650 PresentationController::provideTo(*m_frame, m_client ? m_client->pre sentationClient() : nullptr);
1648 if (RuntimeEnabledFeatures::permissionsEnabled()) 1651 if (RuntimeEnabledFeatures::permissionsEnabled())
1649 PermissionController::provideTo(*m_frame, m_client ? m_client->permi ssionClient() : nullptr); 1652 PermissionController::provideTo(*m_frame, m_client ? m_client->permi ssionClient() : nullptr);
1650 } 1653 }
1651 } 1654 }
1652 1655
1653 PassRefPtrWillBeRawPtr<LocalFrame> WebLocalFrameImpl::initializeCoreFrame(FrameH ost* host, FrameOwner* owner, const AtomicString& name, const AtomicString& fall backName) 1656 PassRefPtrWillBeRawPtr<LocalFrame> WebLocalFrameImpl::initializeCoreFrame(FrameH ost* host, FrameOwner* owner, const AtomicString& name, const AtomicString& fall backName)
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
2085 { 2088 {
2086 m_frameWidget = frameWidget; 2089 m_frameWidget = frameWidget;
2087 } 2090 }
2088 2091
2089 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const 2092 WebFrameWidgetImpl* WebLocalFrameImpl::frameWidget() const
2090 { 2093 {
2091 return m_frameWidget; 2094 return m_frameWidget;
2092 } 2095 }
2093 2096
2094 } // namespace blink 2097 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698