Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / platform_apps / event_page / suspend_storage_api / main.js
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 chrome.app.runtime.onLaunched.addListener(function() {
6   chrome.app.window.create('index.html', {});
7 });
8
9 chrome.runtime.onSuspend.addListener(function() {
10   var now = new Date();
11   chrome.storage.local.set({"last_save": now.toLocaleString()}, function() {
12     console.log("Finished writing last_save: " + now.toLocaleString());
13   });
14 });