Bug 448607 - Includes and comments are not accurate in mozStorageBackground.*

This fixes some comments that are wrong and removes unneeded includes.
rs=me; there's really no change here.
This commit is contained in:
Shawn Wilsher 2008-08-27 13:05:03 -04:00
Родитель a56bc61939
Коммит 8415fd9d17
2 изменённых файлов: 6 добавлений и 12 удалений

Просмотреть файл

@ -1,5 +1,5 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: sw=2 ts=2 sts=2
* vim: sw=2 ts=2 sts=2 expandtab
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
@ -16,7 +16,7 @@
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Mozilla Corporation.
* Mozilla Corporation.
* Portions created by the Initial Developer are Copyright (C) 2008
* the Initial Developer. All Rights Reserved.
*
@ -37,16 +37,13 @@
*
* ***** END LICENSE BLOCK ***** */
#include "nsAutoLock.h"
#include "nsIFile.h"
#include "nsIThreadPool.h"
#include "nsXPCOMCIDInternal.h"
#include "nsIObserver.h"
#include "nsIObserverService.h"
#include "nsServiceManagerUtils.h"
#include "mozStorageCID.h"
#include "mozIStorageService.h"
#include "mozStorageConnection.h"
#include "mozStorageBackground.h"
namespace {

Просмотреть файл

@ -1,5 +1,5 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: sw=2 ts=2 sts=2
* vim: sw=2 ts=2 sts=2 expandtab
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
@ -16,7 +16,7 @@
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Mozilla Corporation.
* Mozilla Corporation.
* Portions created by the Initial Developer are Copyright (C) 2008
* the Initial Developer. All Rights Reserved.
*
@ -47,10 +47,7 @@ class nsIEventTarget;
class nsIObserver;
/**
* This class managed the connections used in the background for
* asynchronous operations. There is a one-to-one mapping of calling thread
* connections to background ones. Additionally, it manages the background
* thread pool used for asynchronous database calls.
* Provides an event target to dispatch background events to for storage.
*
* @note This class is threadsafe.
*/