From 9622ca5f54236d00bc8cf6ce9c545b366d8f92a2 Mon Sep 17 00:00:00 2001 From: "jorlow@chromium.org" Date: Tue, 2 Feb 2010 19:01:42 +0000 Subject: Add support for fine grained permissions to use LocalStorage. TEST=none BUG=none Review URL: http://codereview.chromium.org/565004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37856 0039d316-1c4b-4281-b951-d872f2087c98 --- base/nullable_string16.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'base') diff --git a/base/nullable_string16.h b/base/nullable_string16.h index 6f69aa5..6f07183 100644 --- a/base/nullable_string16.h +++ b/base/nullable_string16.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -13,6 +13,7 @@ class NullableString16 { public: NullableString16() : is_null_(false) { } + explicit NullableString16(bool is_null) : is_null_(is_null) { } NullableString16(const string16& string, bool is_null) : string_(string), is_null_(is_null) { } -- cgit v1.1