diff options
author | tbreisacher@chromium.org <tbreisacher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-06 03:03:55 +0000 |
---|---|---|
committer | tbreisacher@chromium.org <tbreisacher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-06 03:03:55 +0000 |
commit | c6cc03e309be697cfa1d5ca77960ae71caac538c (patch) | |
tree | 790829514ad179ca475beac1554657e1d78a2635 /chrome/browser/resources/crashes.js | |
parent | a617deabb4d37584886f61f30b14d9d887dcb0c7 (diff) | |
download | chromium_src-c6cc03e309be697cfa1d5ca77960ae71caac538c.zip chromium_src-c6cc03e309be697cfa1d5ca77960ae71caac538c.tar.gz chromium_src-c6cc03e309be697cfa1d5ca77960ae71caac538c.tar.bz2 |
a few more JS style nits...
BUG=122002
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10010019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131087 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/crashes.js')
-rw-r--r-- | chrome/browser/resources/crashes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/resources/crashes.js b/chrome/browser/resources/crashes.js index db18567..b4cec0e 100644 --- a/chrome/browser/resources/crashes.js +++ b/chrome/browser/resources/crashes.js @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -8,7 +8,7 @@ localStrings = new LocalStrings(); * Requests the list of crashes from the backend. */ function requestCrashes() { - chrome.send('requestCrashList', []) + chrome.send('requestCrashList'); } /** |