mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 17:31:47 +09:00
Vim control lines were re-introduced or not entirely cleaned up. This nukes them again. Removing from embedding, extensions, gfx, hal, ipc, layout, mailnews, media and memory. More to come.
24 lines
756 B
C++
24 lines
756 B
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* 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/. */
|
|
|
|
#ifndef IPC_GonkNativeHandleUtils_h
|
|
#define IPC_GonkNativeHandleUtils_h
|
|
|
|
#include "ipc/IPCMessageUtils.h"
|
|
|
|
#include "GonkNativeHandle.h"
|
|
|
|
namespace IPC {
|
|
|
|
template <>
|
|
struct ParamTraits<mozilla::layers::GonkNativeHandle> {
|
|
typedef mozilla::layers::GonkNativeHandle paramType;
|
|
static void Write(Message*, const paramType&) {}
|
|
static bool Read(const Message*, PickleIterator*, paramType*) { return false; }
|
|
};
|
|
|
|
} // namespace IPC
|
|
|
|
#endif // IPC_GonkNativeHandleUtils_h
|