gecko-dev/dom/ipc/ContentPrefs.h
Andrew McCreight c18b2db7ea Bug 1341890 - Fix line endings for ContentPrefs.h. r=billm
Also fix the indentation of gInitPrefs.

MozReview-Commit-ID: 1vNwCSxyTo

--HG--
extra : rebase_source : 161b5460d125b4110700196af9e9df4862f27085
2017-02-24 10:23:53 -08:00

26 lines
632 B
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 mozilla_dom_ContentPrefs_h
#define mozilla_dom_ContentPrefs_h
namespace mozilla {
namespace dom {
class ContentPrefs {
public:
static const char** GetContentPrefs(size_t* aCount);
static const char* GetContentPref(size_t aIndex);
private:
static const char* gInitPrefs[];
};
}
}
#endif