💄 There should be no space between & and type name.

This commit is contained in:
Cheng Zhao 2013-12-10 14:27:25 +08:00
parent f9c41f33e5
commit d82cfc023f
20 changed files with 221 additions and 221 deletions

View file

@ -31,19 +31,19 @@ class AutoUpdater : public EventEmitter,
const base::Closure& quit_and_install) OVERRIDE;
private:
static v8::Handle<v8::Value> New(const v8::Arguments &args);
static v8::Handle<v8::Value> New(const v8::Arguments& args);
static v8::Handle<v8::Value> SetFeedURL(const v8::Arguments &args);
static v8::Handle<v8::Value> SetFeedURL(const v8::Arguments& args);
static v8::Handle<v8::Value> SetAutomaticallyChecksForUpdates(
const v8::Arguments &args);
const v8::Arguments& args);
static v8::Handle<v8::Value> SetAutomaticallyDownloadsUpdates(
const v8::Arguments &args);
static v8::Handle<v8::Value> CheckForUpdates(const v8::Arguments &args);
const v8::Arguments& args);
static v8::Handle<v8::Value> CheckForUpdates(const v8::Arguments& args);
static v8::Handle<v8::Value> CheckForUpdatesInBackground(
const v8::Arguments &args);
const v8::Arguments& args);
static v8::Handle<v8::Value> ContinueUpdate(const v8::Arguments &args);
static v8::Handle<v8::Value> QuitAndInstall(const v8::Arguments &args);
static v8::Handle<v8::Value> ContinueUpdate(const v8::Arguments& args);
static v8::Handle<v8::Value> QuitAndInstall(const v8::Arguments& args);
base::Closure continue_update_;
base::Closure quit_and_install_;