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

Unified Diff: chrome/common/extensions/api/app_window.idl

Issue 11953121: Fix up how the JSON Schema compiler decides whether to include or forward (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert changes to webview so that this can land Created 7 years, 11 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
« no previous file with comments | « no previous file | chrome/common/extensions/api/events.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/app_window.idl
diff --git a/chrome/common/extensions/api/app_window.idl b/chrome/common/extensions/api/app_window.idl
index ca088048cdb3acc1f81a6d00ffd8a82b11b65b59..b0aa1b706b24cddf62f4597f8fedb9d55bbf6684 100644
--- a/chrome/common/extensions/api/app_window.idl
+++ b/chrome/common/extensions/api/app_window.idl
@@ -3,6 +3,13 @@
// found in the LICENSE file.
namespace app.window {
+ dictionary Bounds {
+ long? left;
+ long? top;
+ long? width;
+ long? height;
+ };
+
dictionary CreateWindowOptions {
// Id to identify the window. This will be used to remember the size
// and position of the window and restore that geometry when a window
@@ -82,13 +89,6 @@ namespace app.window {
callback CreateWindowCallback =
void ([instanceOf=AppWindow] object created_window);
- dictionary Bounds {
- long? left;
- long? top;
- long? width;
- long? height;
- };
-
dictionary AppWindow {
// Focus the window.
static void focus();
« no previous file with comments | « no previous file | chrome/common/extensions/api/events.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698