Bug 1370519 - Part 1: Add missing includes to fix non-unified builds; r=btseng

This commit is contained in:
Jan Varga 2017-06-07 12:36:20 +02:00
Родитель 03c8a070c4
Коммит c9e62d9e30
9 изменённых файлов: 14 добавлений и 0 удалений

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

@ -6,7 +6,9 @@
#include "FileSnapshot.h"
#include "IDBDatabase.h"
#include "IDBFileHandle.h"
#include "IDBMutableFile.h"
#include "mozilla/Assertions.h"
#include "nsIAsyncInputStream.h"
#include "nsICloneableInputStream.h"

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

@ -56,6 +56,7 @@
namespace mozilla {
namespace dom {
using namespace mozilla::dom::indexedDB;
using namespace mozilla::dom::quota;
using namespace mozilla::ipc;
using namespace mozilla::services;

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

@ -45,6 +45,7 @@
namespace mozilla {
namespace dom {
using namespace mozilla::dom::indexedDB;
using namespace mozilla::dom::quota;
using namespace mozilla::ipc;

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

@ -12,6 +12,8 @@
#include "mozilla/dom/IDBFileHandleBinding.h"
#include "mozilla/dom/filehandle/ActorsChild.h"
#include "mozilla/EventDispatcher.h"
#include "nsContentUtils.h"
#include "nsQueryObject.h"
#include "nsServiceManagerUtils.h"
#include "nsWidgetsCID.h"

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

@ -26,6 +26,8 @@
namespace mozilla {
namespace dom {
using namespace mozilla::dom::indexedDB;
namespace {
already_AddRefed<IDBRequest>

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

@ -53,6 +53,7 @@
namespace mozilla {
namespace dom {
using namespace mozilla::dom::indexedDB;
using namespace mozilla::dom::quota;
using namespace mozilla::dom::workers;
using namespace mozilla::ipc;

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

@ -18,6 +18,7 @@
#include "mozilla/ipc/BackgroundChild.h"
#include "nsAutoPtr.h"
#include "nsPIDOMWindow.h"
#include "nsQueryObject.h"
#include "nsServiceManagerUtils.h"
#include "nsTHashtable.h"
#include "ProfilerHelpers.h"

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

@ -11,6 +11,7 @@
#include "nsCharSeparatedTokenizer.h"
#include "nsJSUtils.h"
#include "nsPrintfCString.h"
#include "xpcpublic.h"
#include "mozilla/dom/BindingDeclarations.h"

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

@ -7,6 +7,9 @@
#ifndef mozilla_dom_indexeddb_scripterrorhelper_h__
#define mozilla_dom_indexeddb_scripterrorhelper_h__
#include <inttypes.h>
class nsACString;
class nsAString;
namespace mozilla {