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

Side by Side Diff: third_party/WebKit/public/web/WebFrameClient.h

Issue 1794553002: [Playground] Onion Soup: moving ScreenWakeLock to Blink modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit DEPS Created 4 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
« no previous file with comments | « third_party/WebKit/public/platform/modules/wake_lock/wake_lock_service.mojom ('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) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 class WebPresentationClient; 90 class WebPresentationClient;
91 class WebPushClient; 91 class WebPushClient;
92 class WebRTCPeerConnectionHandler; 92 class WebRTCPeerConnectionHandler;
93 class WebScreenOrientationClient; 93 class WebScreenOrientationClient;
94 class WebString; 94 class WebString;
95 class WebURL; 95 class WebURL;
96 class WebURLResponse; 96 class WebURLResponse;
97 class WebUSBClient; 97 class WebUSBClient;
98 class WebUserMediaClient; 98 class WebUserMediaClient;
99 class WebVRClient; 99 class WebVRClient;
100 class WebWakeLockClient;
101 class WebWorkerContentSettingsClientProxy; 100 class WebWorkerContentSettingsClientProxy;
102 struct WebColorSuggestion; 101 struct WebColorSuggestion;
103 struct WebConsoleMessage; 102 struct WebConsoleMessage;
104 struct WebContextMenuData; 103 struct WebContextMenuData;
105 struct WebPluginParams; 104 struct WebPluginParams;
106 struct WebPopupMenuInfo; 105 struct WebPopupMenuInfo;
107 struct WebRect; 106 struct WebRect;
108 struct WebURLError; 107 struct WebURLError;
109 108
110 class WebFrameClient { 109 class WebFrameClient {
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 virtual void requestStorageQuota( 554 virtual void requestStorageQuota(
556 WebStorageQuotaType, 555 WebStorageQuotaType,
557 unsigned long long newQuotaInBytes, 556 unsigned long long newQuotaInBytes,
558 WebStorageQuotaCallbacks) { } 557 WebStorageQuotaCallbacks) { }
559 558
560 // WebSocket ----------------------------------------------------- 559 // WebSocket -----------------------------------------------------
561 560
562 // A WebSocket object is going to open a new WebSocket connection. 561 // A WebSocket object is going to open a new WebSocket connection.
563 virtual void willOpenWebSocket(WebSocketHandle*) { } 562 virtual void willOpenWebSocket(WebSocketHandle*) { }
564 563
565 // Wake Lock -----------------------------------------------------
566
567 virtual WebWakeLockClient* wakeLockClient() { return 0; }
568
569 // Geolocation --------------------------------------------------------- 564 // Geolocation ---------------------------------------------------------
570 565
571 // Access the embedder API for (client-based) geolocation client . 566 // Access the embedder API for (client-based) geolocation client .
572 virtual WebGeolocationClient* geolocationClient() { return 0; } 567 virtual WebGeolocationClient* geolocationClient() { return 0; }
573 568
574 569
575 // MediaStream ----------------------------------------------------- 570 // MediaStream -----------------------------------------------------
576 571
577 // A new WebRTCPeerConnectionHandler is created. 572 // A new WebRTCPeerConnectionHandler is created.
578 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) { } 573 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) { }
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 // Mojo ---------------------------------------------------------------- 728 // Mojo ----------------------------------------------------------------
734 virtual ServiceRegistry* serviceRegistry() { return nullptr; } 729 virtual ServiceRegistry* serviceRegistry() { return nullptr; }
735 730
736 protected: 731 protected:
737 virtual ~WebFrameClient() { } 732 virtual ~WebFrameClient() { }
738 }; 733 };
739 734
740 } // namespace blink 735 } // namespace blink
741 736
742 #endif 737 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/public/platform/modules/wake_lock/wake_lock_service.mojom ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698