Bug 1183223 - Create a markers directory temporarily inside docshell/base where all marker logic should go into, r=smaug

This commit is contained in:
Victor Porof 2015-07-17 15:51:19 -04:00
parent aee4360a88
commit 3b3260cf50
7 changed files with 27 additions and 4 deletions

View File

@ -4,6 +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/.
DIRS += [
'timeline',
]
XPIDL_SOURCES += [
'nsCDefaultURIFixup.idl',
'nsIClipboardCommands.idl',
@ -42,13 +46,11 @@ EXPORTS += [
]
EXPORTS.mozilla += [
'AutoTimelineMarker.h',
'IHistory.h',
'LoadContext.h',
]
UNIFIED_SOURCES += [
'AutoTimelineMarker.cpp',
'LoadContext.cpp',
'nsAboutRedirector.cpp',
'nsDefaultURIFixup.cpp',
@ -61,7 +63,6 @@ UNIFIED_SOURCES += [
'nsDSURIContentListener.cpp',
'nsWebNavigationInfo.cpp',
'SerializedLoadContext.cpp',
'TimelineMarker.cpp',
]
FAIL_ON_WARNINGS = True

View File

@ -33,7 +33,7 @@
#include "nsAutoPtr.h"
#include "nsThreadUtils.h"
#include "nsContentUtils.h"
#include "TimelineMarker.h"
#include "timeline/TimelineMarker.h"
// Threshold value in ms for META refresh based redirects
#define REFRESH_REDIRECT_TIMER 15000

View File

@ -0,0 +1,22 @@
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# 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/.
EXPORTS.mozilla += [
'AutoTimelineMarker.h',
]
UNIFIED_SOURCES += [
'AutoTimelineMarker.cpp',
'TimelineMarker.cpp',
]
FAIL_ON_WARNINGS = True
FINAL_LIBRARY = 'xul'
LOCAL_INCLUDES += [
'/docshell/base'
]