File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -3711,6 +3711,32 @@ chrome.topSites.get = function(callback) {};
3711
3711
chrome . windows = { } ;
3712
3712
3713
3713
3714
+ /**
3715
+ * Specifies what type of browser window to create.
3716
+ * @see https://developer.chrome.com/docs/extensions/reference/windows/#type-CreateType
3717
+ * @enum {string}
3718
+ */
3719
+ chrome . windows . CreateType = {
3720
+ NORMAL : '' ,
3721
+ PANEL : '' ,
3722
+ POPUP : '' ,
3723
+ } ;
3724
+
3725
+
3726
+ /**
3727
+ * The type of browser window this is.
3728
+ * @see https://developer.chrome.com/docs/extensions/reference/windows/#type-WindowType
3729
+ * @enum {string}
3730
+ */
3731
+ chrome . windows . WindowType = {
3732
+ APP : '' ,
3733
+ DEVTOOLS : '' ,
3734
+ NORMAL : '' ,
3735
+ PANEL : '' ,
3736
+ POPUP : '' ,
3737
+ } ;
3738
+
3739
+
3714
3740
/**
3715
3741
* @param {Object= } opt_createData May have many keys to specify parameters.
3716
3742
* Or the callback.
You can’t perform that action at this time.
0 commit comments