diff options
Diffstat (limited to 'chrome/common/extensions/extension.h')
-rw-r--r-- | chrome/common/extensions/extension.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h index 107d014..a6a5e78 100644 --- a/chrome/common/extensions/extension.h +++ b/chrome/common/extensions/extension.h @@ -335,6 +335,8 @@ class Extension { const std::string& launch_web_url() const { return launch_web_url_; } LaunchContainer launch_container() const { return launch_container_; } bool launch_fullscreen() const { return launch_fullscreen_; } + int launch_width() const { return launch_width_; } + int launch_height() const { return launch_height_; } // Gets the fully resolved absolute launch URL. GURL GetFullLaunchURL() const; @@ -520,6 +522,11 @@ class Extension { // Launch full screen by default. bool launch_fullscreen_; + // The default size of the container when launching. Only respected for + // containers like panels and windows. + int launch_width_; + int launch_height_; + // Cached images for this extension. This maps from the relative_path of the // resource to the cached image. ImageCache image_cache_; |