Closed
Bug 195565
Opened 22 years ago
Closed 18 years ago
Shorten build time - convert #import's to @class's
Categories
(Camino Graveyard :: General, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
Camino1.6
People
(Reporter: sbwoodside, Assigned: stuart.morgan+bugzilla)
Details
(Keywords: fixed1.8.1.8)
Attachments
(1 file)
9.96 KB,
patch
|
mark
:
superreview+
|
Details | Diff | Splinter Review |
Shorten the time to rebuild chimera by converting #import in .h files in the
Chimera project into @class definitions. e.g., in MainController.h convert
#import "SplashScreenWindow.h"
into
@class SplashScreenWindow
then in the case where the header for SplashScreenWindow changes, PB will not
need to rebuild all of the classes that hold SplashScreenWindow objects. This
optimization is possible in any headers where the import is only used for
definitions.
Comment 2•20 years ago
|
||
Ongoing.
Status: NEW → ASSIGNED
Priority: -- → P3
Target Milestone: --- → Future
Updated•19 years ago
|
QA Contact: winnie → general
Assignee | ||
Comment 4•18 years ago
|
||
I think this is just about everything we could do without actually restructuring files.
Assignee: nick.kreeger → stuart.morgan
Status: NEW → ASSIGNED
Attachment #278237 -
Flags: superreview?(mark)
Updated•18 years ago
|
Attachment #278237 -
Flags: superreview?(mark) → superreview+
Assignee | ||
Comment 5•18 years ago
|
||
Landed on trunk and MOZILLA_1_8_BRANCH.
Status: ASSIGNED → RESOLVED
Closed: 18 years ago
Keywords: fixed1.8.1.7
Resolution: --- → FIXED
Target Milestone: Future → Camino1.6
You need to log in
before you can comment on or make changes to this bug.
Description
•