1/* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5#include "nsISupports.idl" 6 7[scriptable, uuid(21e6d094-e016-41a4-80cd-76d2e20871aa)] 8interface nsIRegion : nsISupports 9{ 10 /** 11 * The users current region. 12 */ 13 readonly attribute AString current; 14 15 /** 16 * The users current home region. 17 */ 18 readonly attribute AString home; 19}; 20 21%{ C++ 22/** 23 * The observer topic to listen to for Region notifications. 24 */ 25#define REGION_TOPIC "browser-region-updated" 26 27%} 28