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

Side by Side Diff: tools/metrics/actions/actions.xml

Issue 984963004: <webview>: Implement fullscreen permission for html5 element.requestFullscreen() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tmptmptmp
Patch Set: Disable one test one test on mac with bug ref, use document.webkitIsFullScreen Created 5 years, 9 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 | « extensions/renderer/resources/guest_view/web_view/web_view_events.js ('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 2014 The Chromium Authors. All rights reserved. 2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <!-- 7 <!--
8 This file is a comprehensive list of Chrome user actions along with the owner 8 This file is a comprehensive list of Chrome user actions along with the owner
9 and description for each user action. 9 and description for each user action.
10 10
(...skipping 11711 matching lines...) Expand 10 before | Expand all | Expand 10 after
11722 </action> 11722 </action>
11723 11723
11724 <action name="WebView.PermissionAllow.FileSystem"> 11724 <action name="WebView.PermissionAllow.FileSystem">
11725 <owner>fsamuel@chromium.org</owner> 11725 <owner>fsamuel@chromium.org</owner>
11726 <owner>hanxi@chromium.org</owner> 11726 <owner>hanxi@chromium.org</owner>
11727 <description> 11727 <description>
11728 Tracks when the filesystem permission is explicitly allowed on a webview. 11728 Tracks when the filesystem permission is explicitly allowed on a webview.
11729 </description> 11729 </description>
11730 </action> 11730 </action>
11731 11731
11732 <action name="WebView.PermissionAllow.Fullscreen">
11733 <owner>fsamuel@chromium.org</owner>
11734 <owner>lazyboy@chromium.org</owner>
11735 <description>
11736 Tracks when the fullscreen permission is explicitly allowed on a webview.
11737 </description>
11738 </action>
11739
11732 <action name="WebView.PermissionAllow.Geolocation"> 11740 <action name="WebView.PermissionAllow.Geolocation">
11733 <owner>fsamuel@chromium.org</owner> 11741 <owner>fsamuel@chromium.org</owner>
11734 <owner>lazyboy@chromium.org</owner> 11742 <owner>lazyboy@chromium.org</owner>
11735 <description> 11743 <description>
11736 Tracks when the geolocation permission is explicitly allowed on a webview. 11744 Tracks when the geolocation permission is explicitly allowed on a webview.
11737 </description> 11745 </description>
11738 </action> 11746 </action>
11739 11747
11740 <action name="WebView.PermissionAllow.JSDialog"> 11748 <action name="WebView.PermissionAllow.JSDialog">
11741 <owner>fsamuel@chromium.org</owner> 11749 <owner>fsamuel@chromium.org</owner>
(...skipping 28 matching lines...) Expand all
11770 </action> 11778 </action>
11771 11779
11772 <action name="WebView.PermissionDeny.FileSystem"> 11780 <action name="WebView.PermissionDeny.FileSystem">
11773 <owner>fsamuel@chromium.org</owner> 11781 <owner>fsamuel@chromium.org</owner>
11774 <owner>hanxi@chromium.org</owner> 11782 <owner>hanxi@chromium.org</owner>
11775 <description> 11783 <description>
11776 Tracks when the filesystem permission is explicitly denied on a webview. 11784 Tracks when the filesystem permission is explicitly denied on a webview.
11777 </description> 11785 </description>
11778 </action> 11786 </action>
11779 11787
11788 <action name="WebView.PermissionDeny.Fullscreen">
11789 <owner>fsamuel@chromium.org</owner>
11790 <owner>lazyboy@chromium.org</owner>
11791 <description>
11792 Tracks when the fullscreen permission is explicitly denied on a webview.
11793 </description>
11794 </action>
11795
11780 <action name="WebView.PermissionDeny.Geolocation"> 11796 <action name="WebView.PermissionDeny.Geolocation">
11781 <owner>fsamuel@chromium.org</owner> 11797 <owner>fsamuel@chromium.org</owner>
11782 <owner>lazyboy@chromium.org</owner> 11798 <owner>lazyboy@chromium.org</owner>
11783 <description> 11799 <description>
11784 Tracks when the geolocation permission is explicitly denied on a webview. 11800 Tracks when the geolocation permission is explicitly denied on a webview.
11785 </description> 11801 </description>
11786 </action> 11802 </action>
11787 11803
11788 <action name="WebView.PermissionDeny.JSDialog"> 11804 <action name="WebView.PermissionDeny.JSDialog">
11789 <owner>fsamuel@chromium.org</owner> 11805 <owner>fsamuel@chromium.org</owner>
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
12025 <action name="webapps.AddShortcut.Manifest"> 12041 <action name="webapps.AddShortcut.Manifest">
12026 <owner>mlamouri@chromium.org</owner> 12042 <owner>mlamouri@chromium.org</owner>
12027 <description> 12043 <description>
12028 Shortcut added to the homescreen with a valid Manifest. This action will be 12044 Shortcut added to the homescreen with a valid Manifest. This action will be
12029 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions 12045 recorded in addition to AppShortcut, AppShortcutApple and Bookmark actions
12030 to keep a trend of whether the webapp also add meta tags. 12046 to keep a trend of whether the webapp also add meta tags.
12031 </description> 12047 </description>
12032 </action> 12048 </action>
12033 12049
12034 </actions> 12050 </actions>
OLDNEW
« no previous file with comments | « extensions/renderer/resources/guest_view/web_view/web_view_events.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698