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

Side by Side Diff: chrome/browser/guest_view/web_view/web_view_constants.cc

Issue 306473012: Plumb file system permission into WebviewGuest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Small changes are made. Created 6 years, 6 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/guest_view/web_view/web_view_constants.h" 5 #include "chrome/browser/guest_view/web_view/web_view_constants.h"
6 6
7 namespace webview { 7 namespace webview {
8 8
9 // Events. 9 // Events.
10 const char kEventClose[] = "webview.onClose"; 10 const char kEventClose[] = "webview.onClose";
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 const char kMessageType[] = "messageType"; 44 const char kMessageType[] = "messageType";
45 const char kName[] = "name"; 45 const char kName[] = "name";
46 const char kNewHeight[] = "newHeight"; 46 const char kNewHeight[] = "newHeight";
47 const char kNewURL[] = "newUrl"; 47 const char kNewURL[] = "newUrl";
48 const char kNewWidth[] = "newWidth"; 48 const char kNewWidth[] = "newWidth";
49 const char kOldHeight[] = "oldHeight"; 49 const char kOldHeight[] = "oldHeight";
50 const char kOldURL[] = "oldUrl"; 50 const char kOldURL[] = "oldUrl";
51 const char kPermission[] = "permission"; 51 const char kPermission[] = "permission";
52 const char kPermissionTypeDialog[] = "dialog"; 52 const char kPermissionTypeDialog[] = "dialog";
53 const char kPermissionTypeDownload[] = "download"; 53 const char kPermissionTypeDownload[] = "download";
54 const char kPermissionTypeFileSystem[] = "filesystem";
54 const char kPermissionTypeGeolocation[] = "geolocation"; 55 const char kPermissionTypeGeolocation[] = "geolocation";
55 const char kPermissionTypeLoadPlugin[] = "loadplugin"; 56 const char kPermissionTypeLoadPlugin[] = "loadplugin";
56 const char kPermissionTypeMedia[] = "media"; 57 const char kPermissionTypeMedia[] = "media";
57 const char kPermissionTypeNewWindow[] = "newwindow"; 58 const char kPermissionTypeNewWindow[] = "newwindow";
58 const char kPermissionTypePointerLock[] = "pointerLock"; 59 const char kPermissionTypePointerLock[] = "pointerLock";
59 const char kOldWidth[] = "oldWidth"; 60 const char kOldWidth[] = "oldWidth";
60 const char kProcessId[] = "processId"; 61 const char kProcessId[] = "processId";
61 const char kProgress[] = "progress"; 62 const char kProgress[] = "progress";
62 const char kReason[] = "reason"; 63 const char kReason[] = "reason";
63 const char kRequestId[] = "requestId"; 64 const char kRequestId[] = "requestId";
(...skipping 22 matching lines...) Expand all
86 // Initialization parameters. 87 // Initialization parameters.
87 const char kParameterUserAgentOverride[] = "userAgentOverride"; 88 const char kParameterUserAgentOverride[] = "userAgentOverride";
88 89
89 // Miscellaneous. 90 // Miscellaneous.
90 const char kMenuItemCommandId[] = "commandId"; 91 const char kMenuItemCommandId[] = "commandId";
91 const char kMenuItemLabel[] = "label"; 92 const char kMenuItemLabel[] = "label";
92 const unsigned int kMaxOutstandingPermissionRequests = 1024; 93 const unsigned int kMaxOutstandingPermissionRequests = 1024;
93 const int kInvalidPermissionRequestID = 0; 94 const int kInvalidPermissionRequestID = 0;
94 95
95 } // namespace webview 96 } // namespace webview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698