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

Unified Diff: chrome/common/extensions/api/windows.json

Issue 9328037: Add fullscreen state support for chrome.windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small fix Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/windows.json
diff --git a/chrome/common/extensions/api/windows.json b/chrome/common/extensions/api/windows.json
index e72f30345ee0af11419851f1d04327e564cb184a..e322e025845b3ef5a0a48334766f036254921425 100644
--- a/chrome/common/extensions/api/windows.json
+++ b/chrome/common/extensions/api/windows.json
@@ -23,7 +23,7 @@
"state": {
"type": "string",
"description": "The state of this browser window.",
- "enum": ["normal", "minimized", "maximized"]
+ "enum": ["normal", "minimized", "maximized", "fullscreen"]
}
}
}
@@ -208,8 +208,8 @@
"state": {
"type": "string",
"optional": true,
- "description": "The new state of the window. The 'minimized' and 'maximized' states cannot be combined with 'left', 'top', 'width' or 'height'.",
- "enum": ["normal", "minimized", "maximized"]
+ "description": "The new state of the window. The 'minimized', 'maximized' and 'fullscreen' states cannot be combined with 'left', 'top', 'width' or 'height'.",
+ "enum": ["normal", "minimized", "maximized", "fullscreen"]
}
}
},

Powered by Google App Engine
This is Rietveld 408576698