root/Source/modules/serviceworkers/RegistrationOptionList.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


// 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 RegistrationOptionList_h
#define RegistrationOptionList_h

#include "bindings/v8/Dictionary.h"

namespace WebCore {

struct RegistrationOptionList  {
    explicit RegistrationOptionList(const Dictionary& options)
        : scope("/*")
    {
        options.get("scope", scope);
    }

    String scope;
};

} // namespace WebCore

#endif // RegistrationOptionList_h

/* [<][>][^][v][top][bottom][index][help] */