summaryrefslogtreecommitdiffstats
path: root/chrome/browser/dom_ui
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/dom_ui')
-rw-r--r--chrome/browser/dom_ui/app_launcher_handler.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/dom_ui/app_launcher_handler.cc b/chrome/browser/dom_ui/app_launcher_handler.cc
index df3a776..dbe6898 100644
--- a/chrome/browser/dom_ui/app_launcher_handler.cc
+++ b/chrome/browser/dom_ui/app_launcher_handler.cc
@@ -147,10 +147,10 @@ void AppLauncherHandler::HandleLaunchApp(const Value* value) {
std::string extension_id;
std::string launch_container;
- int left;
- int top;
- int width;
- int height;
+ int left = 0;
+ int top = 0;
+ int width = 0;
+ int height = 0;
const ListValue* list = static_cast<const ListValue*>(value);
if (!list->GetString(0, &extension_id) ||