Bug 1142181 - ProfilerBacktrace.cpp should #include its own .h file first, r=aklotz

This commit is contained in:
chiajung hung 2015-03-16 23:01:00 +01:00
Родитель b0a157386d
Коммит 7e284c1ea2
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -4,10 +4,10 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "JSStreamWriter.h"
#include "ProfilerBacktrace.h"
#include "SyncProfile.h"
#include "JSStreamWriter.h"
#include "SyncProfile.h"
ProfilerBacktrace::ProfilerBacktrace(SyncProfile* aProfile)
: mProfile(aProfile)

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

@ -8,6 +8,7 @@
#define __PROFILER_BACKTRACE_H
class SyncProfile;
class JSStreamWriter;
class ProfilerBacktrace
{