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

Side by Side Diff: extensions/renderer/resources/set_icon.js

Issue 482603002: Unify logic of stack trace generation for extension errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add $Error and $String.indexOf to safe builtins Created 6 years, 4 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 var SetIconCommon = requireNative('setIcon').SetIconCommon; 5 var SetIconCommon = requireNative('setIcon').SetIconCommon;
6 var sendRequest = require('sendRequest').sendRequest; 6 var sendRequest = require('sendRequest').sendRequest;
7 7
8 function loadImagePath(path, iconSize, actionType, callback) { 8 function loadImagePath(path, iconSize, actionType, callback) {
9 var img = new Image(); 9 var img = new Image();
10 img.onerror = function() { 10 img.onerror = function() {
(...skipping 18 matching lines...) Expand all
29 function verifyImageData(imageData, iconSize) { 29 function verifyImageData(imageData, iconSize) {
30 // Verify that this at least looks like an ImageData element. 30 // Verify that this at least looks like an ImageData element.
31 // Unfortunately, we cannot use instanceof because the ImageData 31 // Unfortunately, we cannot use instanceof because the ImageData
32 // constructor is not public. 32 // constructor is not public.
33 // 33 //
34 // We do this manually instead of using JSONSchema to avoid having these 34 // We do this manually instead of using JSONSchema to avoid having these
35 // properties show up in the doc. 35 // properties show up in the doc.
36 if (!('width' in imageData) || 36 if (!('width' in imageData) ||
37 !('height' in imageData) || 37 !('height' in imageData) ||
38 !('data' in imageData)) { 38 !('data' in imageData)) {
39 throw new Error( 39 throw new $Error.self(
40 'The imageData property must contain an ImageData object or' + 40 'The imageData property must contain an ImageData object or' +
41 ' dictionary of ImageData objects.'); 41 ' dictionary of ImageData objects.');
42 } 42 }
43 43
44 if (imageData.width > iconSize || 44 if (imageData.width > iconSize ||
45 imageData.height > iconSize) { 45 imageData.height > iconSize) {
46 throw new Error( 46 throw new $Error.self(
47 'The imageData property must contain an ImageData object that ' + 47 'The imageData property must contain an ImageData object that ' +
48 'is no larger than ' + iconSize + ' pixels square.'); 48 'is no larger than ' + iconSize + ' pixels square.');
49 } 49 }
50 } 50 }
51 51
52 function setIcon(details, callback, name, parameters, actionType) { 52 function setIcon(details, callback, name, parameters, actionType) {
53 var iconSizes = [19, 38]; 53 var iconSizes = [19, 38];
54 if ('iconIndex' in details) { 54 if ('iconIndex' in details) {
55 sendRequest(name, [details, callback], parameters); 55 sendRequest(name, [details, callback], parameters);
56 } else if ('imageData' in details) { 56 } else if ('imageData' in details) {
(...skipping 15 matching lines...) Expand all
72 // it must be an ImageData object. 72 // it must be an ImageData object.
73 var sizeKey = iconSizes[0].toString(); 73 var sizeKey = iconSizes[0].toString();
74 var imageData = details.imageData; 74 var imageData = details.imageData;
75 details.imageData = {}; 75 details.imageData = {};
76 details.imageData[sizeKey] = imageData; 76 details.imageData[sizeKey] = imageData;
77 verifyImageData(details.imageData[sizeKey], iconSizes[0]); 77 verifyImageData(details.imageData[sizeKey], iconSizes[0]);
78 sendRequest(name, [details, callback], parameters, 78 sendRequest(name, [details, callback], parameters,
79 {nativeFunction: SetIconCommon}); 79 {nativeFunction: SetIconCommon});
80 } 80 }
81 } else { 81 } else {
82 throw new Error('imageData property has unexpected type.'); 82 throw new $Error.self('imageData property has unexpected type.');
83 } 83 }
84 } else if ('path' in details) { 84 } else if ('path' in details) {
85 if (typeof details.path == 'object') { 85 if (typeof details.path == 'object') {
86 details.imageData = {}; 86 details.imageData = {};
87 var isEmpty = true; 87 var isEmpty = true;
88 var processIconSize = function(index) { 88 var processIconSize = function(index) {
89 if (index == iconSizes.length) { 89 if (index == iconSizes.length) {
90 delete details.path; 90 delete details.path;
91 if (isEmpty) 91 if (isEmpty)
92 throw new Error('The path property must not be empty.'); 92 throw new $Error.self('The path property must not be empty.');
93 sendRequest(name, [details, callback], parameters, 93 sendRequest(name, [details, callback], parameters,
94 {nativeFunction: SetIconCommon}); 94 {nativeFunction: SetIconCommon});
95 return; 95 return;
96 } 96 }
97 var sizeKey = iconSizes[index].toString(); 97 var sizeKey = iconSizes[index].toString();
98 if (!(sizeKey in details.path)) { 98 if (!(sizeKey in details.path)) {
99 processIconSize(index + 1); 99 processIconSize(index + 1);
100 return; 100 return;
101 } 101 }
102 isEmpty = false; 102 isEmpty = false;
103 loadImagePath(details.path[sizeKey], iconSizes[index], actionType, 103 loadImagePath(details.path[sizeKey], iconSizes[index], actionType,
104 function(imageData) { 104 function(imageData) {
105 details.imageData[sizeKey] = imageData; 105 details.imageData[sizeKey] = imageData;
106 processIconSize(index + 1); 106 processIconSize(index + 1);
107 }); 107 });
108 } 108 }
109 109
110 processIconSize(0); 110 processIconSize(0);
111 } else if (typeof details.path == 'string') { 111 } else if (typeof details.path == 'string') {
112 var sizeKey = iconSizes[0].toString(); 112 var sizeKey = iconSizes[0].toString();
113 details.imageData = {}; 113 details.imageData = {};
114 loadImagePath(details.path, iconSizes[0], actionType, 114 loadImagePath(details.path, iconSizes[0], actionType,
115 function(imageData) { 115 function(imageData) {
116 details.imageData[sizeKey] = imageData; 116 details.imageData[sizeKey] = imageData;
117 delete details.path; 117 delete details.path;
118 sendRequest(name, [details, callback], parameters, 118 sendRequest(name, [details, callback], parameters,
119 {nativeFunction: SetIconCommon}); 119 {nativeFunction: SetIconCommon});
120 }); 120 });
121 } else { 121 } else {
122 throw new Error('The path property should contain either string or ' + 122 throw new $Error.self('The path property should contain either string ' +
123 'dictionary of strings.'); 123 'or dictionary of strings.');
124 } 124 }
125 } else { 125 } else {
126 throw new Error( 126 throw new $Error.self(
not at google - send to devlin 2014/08/19 16:45:56 new Error() for this whole file (which is horribl
127 'Either the path or imageData property must be specified.'); 127 'Either the path or imageData property must be specified.');
128 } 128 }
129 } 129 }
130 130
131 exports.setIcon = setIcon; 131 exports.setIcon = setIcon;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698