| Index: Source/modules/navigatorconnect/NavigatorConnect.h
|
| diff --git a/Source/modules/navigatorconnect/NavigatorConnect.h b/Source/modules/navigatorconnect/NavigatorConnect.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9cdc568b15d1a7ce54374ba05bcbae8796248a5d
|
| --- /dev/null
|
| +++ b/Source/modules/navigatorconnect/NavigatorConnect.h
|
| @@ -0,0 +1,23 @@
|
| +// Copyright 2014 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.
|
| +
|
| +#ifndef NavigatorConnect_h
|
| +#define NavigatorConnect_h
|
| +
|
| +#include "wtf/text/WTFString.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class Navigator;
|
| +class ScriptPromise;
|
| +class ScriptState;
|
| +
|
| +class NavigatorConnect {
|
| +public:
|
| + static ScriptPromise connect(ScriptState*, Navigator&, const String& url);
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // NavigatorConnect_h
|
|
|