blob: cd80c5815e6ab64091a9136b09b67dd382a763c2 [file] [log] [blame]
// Copyright 2018 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.
#include "content/public/app/content_main.h"
#include "webrunner/service/webrunner_main_delegate.h"
int main(int argc, const char** argv) {
webrunner::WebRunnerMainDelegate delegate;
content::ContentMainParams params(&delegate);
params.argc = argc;
params.argv = argv;
return content::ContentMain(params);
}