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

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

Issue 610643003: Adds new webview.loadDataWithBaseUrl API to allow data URLs to be loaded with a specified base URL … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comment. Created 6 years, 2 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 "extensions/browser/guest_view/web_view/web_view_constants.h" 5 #include "extensions/browser/guest_view/web_view/web_view_constants.h"
6 6
7 namespace webview { 7 namespace webview {
8 8
9 // Attributes. 9 // Attributes.
10 const char kAttributeAllowTransparency[] = "allowtransparency"; 10 const char kAttributeAllowTransparency[] = "allowtransparency";
11 const char kAttributeAutoSize[] = "autosize"; 11 const char kAttributeAutoSize[] = "autosize";
12 const char kAttributeMaxHeight[] = "maxheight"; 12 const char kAttributeMaxHeight[] = "maxheight";
13 const char kAttributeMaxWidth[] = "maxwidth"; 13 const char kAttributeMaxWidth[] = "maxwidth";
14 const char kAttributeMinHeight[] = "minheight"; 14 const char kAttributeMinHeight[] = "minheight";
15 const char kAttributeMinWidth[] = "minwidth"; 15 const char kAttributeMinWidth[] = "minwidth";
16 const char kAttributeName[] = "name"; 16 const char kAttributeName[] = "name";
17 const char kAttributeSrc[] = "src"; 17 const char kAttributeSrc[] = "src";
18 18
19 // API namespace. 19 // API namespace.
20 const char kAPINamespace[] = "webViewInternal"; 20 const char kAPINamespace[] = "webViewInternal";
21 21
22 // API error messages.
23 const char kAPILoadDataInvalidDataURL[] = "Invalid data URL \"%s\".";
24 const char kAPILoadDataInvalidBaseURL[] = "Invalid base URL \"%s\".";
25 const char kAPILoadDataInvalidVirtualURL[] = "Invalid virtual URL \"%s\".";
26
22 // Events. 27 // Events.
23 const char kEventClose[] = "webViewInternal.onClose"; 28 const char kEventClose[] = "webViewInternal.onClose";
24 const char kEventConsoleMessage[] = "webViewInternal.onConsoleMessage"; 29 const char kEventConsoleMessage[] = "webViewInternal.onConsoleMessage";
25 const char kEventContentLoad[] = "webViewInternal.onContentLoad"; 30 const char kEventContentLoad[] = "webViewInternal.onContentLoad";
26 const char kEventContextMenu[] = "chromeWebViewInternal.contextmenu"; 31 const char kEventContextMenu[] = "chromeWebViewInternal.contextmenu";
27 const char kEventDialog[] = "webViewInternal.onDialog"; 32 const char kEventDialog[] = "webViewInternal.onDialog";
28 const char kEventExit[] = "webViewInternal.onExit"; 33 const char kEventExit[] = "webViewInternal.onExit";
29 const char kEventFindReply[] = "webViewInternal.onFindReply"; 34 const char kEventFindReply[] = "webViewInternal.onFindReply";
30 const char kEventFrameNameChanged[] = "webViewInternal.onFrameNameChanged"; 35 const char kEventFrameNameChanged[] = "webViewInternal.onFrameNameChanged";
31 const char kEventLoadAbort[] = "webViewInternal.onLoadAbort"; 36 const char kEventLoadAbort[] = "webViewInternal.onLoadAbort";
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 112
108 // Miscellaneous. 113 // Miscellaneous.
109 const char kMenuItemCommandId[] = "commandId"; 114 const char kMenuItemCommandId[] = "commandId";
110 const char kMenuItemLabel[] = "label"; 115 const char kMenuItemLabel[] = "label";
111 const char kPersistPrefix[] = "persist:"; 116 const char kPersistPrefix[] = "persist:";
112 const char kStoragePartitionId[] = "storagePartitionId"; 117 const char kStoragePartitionId[] = "storagePartitionId";
113 const unsigned int kMaxOutstandingPermissionRequests = 1024; 118 const unsigned int kMaxOutstandingPermissionRequests = 1024;
114 const int kInvalidPermissionRequestID = 0; 119 const int kInvalidPermissionRequestID = 0;
115 120
116 } // namespace webview 121 } // namespace webview
OLDNEW
« no previous file with comments | « extensions/browser/guest_view/web_view/web_view_constants.h ('k') | extensions/browser/guest_view/web_view/web_view_guest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698