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

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

Issue 1416123005: Implement setSinkId() for media elements without src. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 1 month 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/web.gypi ('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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "WebIconURL.h" 42 #include "WebIconURL.h"
43 #include "WebNavigationPolicy.h" 43 #include "WebNavigationPolicy.h"
44 #include "WebNavigationType.h" 44 #include "WebNavigationType.h"
45 #include "WebNavigatorContentUtilsClient.h" 45 #include "WebNavigatorContentUtilsClient.h"
46 #include "WebSandboxFlags.h" 46 #include "WebSandboxFlags.h"
47 #include "WebTextDirection.h" 47 #include "WebTextDirection.h"
48 #include "public/platform/WebCommon.h" 48 #include "public/platform/WebCommon.h"
49 #include "public/platform/WebFileSystem.h" 49 #include "public/platform/WebFileSystem.h"
50 #include "public/platform/WebFileSystemType.h" 50 #include "public/platform/WebFileSystemType.h"
51 #include "public/platform/WebSecurityOrigin.h" 51 #include "public/platform/WebSecurityOrigin.h"
52 #include "public/platform/WebSetSinkIdCallbacks.h"
52 #include "public/platform/WebStorageQuotaCallbacks.h" 53 #include "public/platform/WebStorageQuotaCallbacks.h"
53 #include "public/platform/WebStorageQuotaType.h" 54 #include "public/platform/WebStorageQuotaType.h"
54 #include "public/platform/WebURLError.h" 55 #include "public/platform/WebURLError.h"
55 #include "public/platform/WebURLRequest.h" 56 #include "public/platform/WebURLRequest.h"
56 #include <v8.h> 57 #include <v8.h>
57 58
58 namespace blink { 59 namespace blink {
59 60
60 enum class WebTreeScopeType; 61 enum class WebTreeScopeType;
61 class WebApplicationCacheHost; 62 class WebApplicationCacheHost;
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 { 674 {
674 return WebCustomHandlersNew; 675 return WebCustomHandlersNew;
675 } 676 }
676 677
677 // Bluetooth ----------------------------------------------------------- 678 // Bluetooth -----------------------------------------------------------
678 virtual WebBluetooth* bluetooth() { return 0; } 679 virtual WebBluetooth* bluetooth() { return 0; }
679 680
680 // WebUSB -------------------------------------------------------------- 681 // WebUSB --------------------------------------------------------------
681 virtual WebUSBClient* usbClient() { return nullptr; } 682 virtual WebUSBClient* usbClient() { return nullptr; }
682 683
684
685 // Audio Output Devices API --------------------------------------------
686
687 // Checks that the given audio sink exists and is authorized. The result is provided via the callbacks.
688 // This method takes ownership of the callbacks pointer.
689 virtual void checkIfAudioSinkExistsAndIsAuthorized(const WebString& sinkId, const WebSecurityOrigin&, WebSetSinkIdCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
690
683 protected: 691 protected:
684 virtual ~WebFrameClient() { } 692 virtual ~WebFrameClient() { }
685 }; 693 };
686 694
687 } // namespace blink 695 } // namespace blink
688 696
689 #endif 697 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/web.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698