diff options
author | New Tobin Paradigm <email@mattatobin.com> | 2018-04-16 08:30:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-16 08:30:27 -0400 |
commit | c394a5f8710e9e83e8caa3f524aca4a80309b7cb (patch) | |
tree | 4d6358da9eb9d21d0e85f4732e88c5e7c0391125 /dom/ipc/PDatePicker.ipdl | |
parent | a557bfae78557c5134874683fc7a8121f6b5deb1 (diff) | |
parent | c55addfa6422cd6fd3886f914b71139c4dd0edcc (diff) | |
download | UXP-c394a5f8710e9e83e8caa3f524aca4a80309b7cb.tar UXP-c394a5f8710e9e83e8caa3f524aca4a80309b7cb.tar.gz UXP-c394a5f8710e9e83e8caa3f524aca4a80309b7cb.tar.lz UXP-c394a5f8710e9e83e8caa3f524aca4a80309b7cb.tar.xz UXP-c394a5f8710e9e83e8caa3f524aca4a80309b7cb.zip |
Merge pull request #180 from janekptacijarabaci/html_input_datetime_2
HTML - input - datetime - support for "dom.forms.datetime.others"
Diffstat (limited to 'dom/ipc/PDatePicker.ipdl')
-rw-r--r-- | dom/ipc/PDatePicker.ipdl | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/dom/ipc/PDatePicker.ipdl b/dom/ipc/PDatePicker.ipdl deleted file mode 100644 index 90a2654bb..000000000 --- a/dom/ipc/PDatePicker.ipdl +++ /dev/null @@ -1,27 +0,0 @@ -/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 8 -*- */ -/* vim: set sw=4 ts=8 et tw=80 ft=cpp : */ - -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -include protocol PBrowser; - -namespace mozilla { -namespace dom { - -protocol PDatePicker -{ - manager PBrowser; - -parent: - async Open(); - -child: - async Cancel(); - - async __delete__(nsString color); -}; - -} // namespace dom -} // namespace mozilla |