Bug 614290 - Remove pinnedonly attribute when adding new tabs. r=gavin
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
/* vim: set sw=4 ts=8 et tw=80 ft=cpp : */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mozilla DOM Storage.
*
* The Initial Developer of the Original Code is
* The Mozilla Foundation.
* Portions created by the Initial Developer are Copyright (C) 2010
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Josh Matthews <josh@joshmatthews.net> (original author)
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#include "StorageParent.h"
#include "mozilla/dom/PContentParent.h"
#include "mozilla/unused.h"
#include "nsDOMString.h"
using mozilla::unused;
namespace mozilla {
namespace dom {
StorageParent::StorageParent(const StorageConstructData& aData)
{
if (aData.type() == StorageConstructData::Tnull_t) {
mStorage = new DOMStorageImpl(nsnull);
} else {
const StorageClone& clone = aData.get_StorageClone();
StorageParent* other = static_cast<StorageParent*>(clone.actorParent());
mStorage = new DOMStorageImpl(nsnull, *other->mStorage.get());
mStorage->CloneFrom(clone.callerSecure(), other->mStorage);
}
}
bool
StorageParent::RecvInit(const bool& aUseDB,
const bool& aCanUseChromePersist,
const bool& aSessionOnly,
const nsCString& aDomain,
const nsCString& aScopeDBKey,
const nsCString& aQuotaDomainDBKey,
const nsCString& aQuotaETLDplus1DomainDBKey,
const PRUint32& aStorageType)
{
mStorage->InitFromChild(aUseDB, aCanUseChromePersist, aSessionOnly, aDomain,
aScopeDBKey, aQuotaDomainDBKey, aQuotaETLDplus1DomainDBKey,
aStorageType);
return true;
}
bool
StorageParent::RecvGetKeys(const bool& aCallerSecure, InfallibleTArray<nsString>* aKeys)
{
// Callers are responsible for deallocating the array returned by mStorage->GetKeys
nsAutoPtr<nsTArray<nsString> > keys(mStorage->GetKeys(aCallerSecure));
aKeys->SwapElements(*keys);
return true;
}
bool
StorageParent::RecvGetLength(const bool& aCallerSecure, const bool& aSessionOnly,
PRUint32* aLength, nsresult* rv)
{
mStorage->SetSessionOnly(aSessionOnly);
*rv = mStorage->GetLength(aCallerSecure, aLength);
return true;
}
bool
StorageParent::RecvGetKey(const bool& aCallerSecure, const bool& aSessionOnly,
const PRUint32& aIndex, nsString* aKey, nsresult* rv)
{
mStorage->SetSessionOnly(aSessionOnly);
*rv = mStorage->GetKey(aCallerSecure, aIndex, *aKey);
return true;
}
bool
StorageParent::RecvGetValue(const bool& aCallerSecure, const bool& aSessionOnly,
const nsString& aKey, StorageItem* aItem,
nsresult* rv)
{
mStorage->SetSessionOnly(aSessionOnly);
// We need to ensure that a proper null representation is sent to the child
// if no item is found or an error occurs.
*rv = NS_OK;
nsCOMPtr<nsIDOMStorageItem> item = mStorage->GetValue(aCallerSecure, aKey, rv);
if (NS_FAILED(*rv) || !item) {
*aItem = null_t();
return true;
}
ItemData data(EmptyString(), false);
nsDOMStorageItem* internalItem = static_cast<nsDOMStorageItem*>(item.get());
data.value() = internalItem->GetValueInternal();
if (aCallerSecure)
data.secure() = internalItem->IsSecure();
*aItem = data;
return true;
}
bool
StorageParent::RecvSetValue(const bool& aCallerSecure, const bool& aSessionOnly,
const nsString& aKey, const nsString& aData,
nsString* aOldValue, nsresult* rv)
{
mStorage->SetSessionOnly(aSessionOnly);
*rv = mStorage->SetValue(aCallerSecure, aKey, aData, *aOldValue);
return true;
}
bool
StorageParent::RecvRemoveValue(const bool& aCallerSecure, const bool& aSessionOnly,
const nsString& aKey, nsString* aOldValue,
nsresult* rv)
{
mStorage->SetSessionOnly(aSessionOnly);
*rv = mStorage->RemoveValue(aCallerSecure, aKey, *aOldValue);
return true;
}
bool
StorageParent::RecvClear(const bool& aCallerSecure, const bool& aSessionOnly,
PRInt32* aOldCount, nsresult* rv)
{
mStorage->SetSessionOnly(aSessionOnly);
*rv = mStorage->Clear(aCallerSecure, aOldCount);
return true;
}
bool
StorageParent::RecvGetDBValue(const nsString& aKey, nsString* aValue,
PRBool* aSecure, nsresult* rv)
{
*rv = mStorage->GetDBValue(aKey, *aValue, aSecure);
return true;
}
bool
StorageParent::RecvSetDBValue(const nsString& aKey, const nsString& aValue,
const PRBool& aSecure, nsresult* rv)
{
*rv = mStorage->SetDBValue(aKey, aValue, aSecure);
return true;
}
bool
StorageParent::RecvSetSecure(const nsString& aKey, const PRBool& aSecure,
nsresult* rv)
{
*rv = mStorage->SetSecure(aKey, aSecure);
return true;
}
}
}