Blame dom/ipc/PColorPicker.ipdl

Packit f0b94e
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 8 -*- */
Packit f0b94e
/* vim: set sw=4 ts=8 et tw=80 ft=cpp : */
Packit f0b94e
Packit f0b94e
/* This Source Code Form is subject to the terms of the Mozilla Public
Packit f0b94e
 * License, v. 2.0. If a copy of the MPL was not distributed with this
Packit f0b94e
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Packit f0b94e
Packit f0b94e
include protocol PBrowser;
Packit f0b94e
Packit f0b94e
namespace mozilla {
Packit f0b94e
namespace dom {
Packit f0b94e
Packit f0b94e
protocol PColorPicker
Packit f0b94e
{
Packit f0b94e
    manager PBrowser;
Packit f0b94e
Packit f0b94e
parent:
Packit f0b94e
    async Open();
Packit f0b94e
Packit f0b94e
child:
Packit f0b94e
    async Update(nsString color);
Packit f0b94e
Packit f0b94e
    async __delete__(nsString color);
Packit f0b94e
};
Packit f0b94e
Packit f0b94e
} // namespace dom
Packit f0b94e
} // namespace mozilla