Bug 1449068 part 1 - Wrap content of ServoStyleSetInlines.h in mozilla namespace. r?emilio draft
authorXidorn Quan <me@upsuper.org>
Wed, 04 Apr 2018 21:05:23 +1000
changeset 777200 f018319c3a3bcdafce6df569961f9bbb9e0e7a4b
parent 777170 7c5d79df82069e532c40d9c7f8810064b0214062
child 777201 2ce0f2e9ac1f876a2e57c476fb5f4b0f6a3cbb76
child 777203 ecd6f7a140271fd60cea78dcca328bc4cc0e8f86
push id105102
push userxquan@mozilla.com
push dateWed, 04 Apr 2018 11:25:28 +0000
reviewersemilio
bugs1449068
milestone61.0a1
Bug 1449068 part 1 - Wrap content of ServoStyleSetInlines.h in mozilla namespace. r?emilio MozReview-Commit-ID: HiIZdZwdTeZ
layout/style/ServoStyleSetInlines.h
--- a/layout/style/ServoStyleSetInlines.h
+++ b/layout/style/ServoStyleSetInlines.h
@@ -5,22 +5,26 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
 #ifndef mozilla_ServoStyleSetInlines_h
 #define mozilla_ServoStyleSetInlines_h
 
 #include "mozilla/ServoStyleSet.h"
 #include "mozilla/ServoBindings.h"
 
+namespace mozilla {
+
 nscoord
 ServoStyleSet::EvaluateSourceSizeList(
   const RawServoSourceSizeList* aSourceSizeList) const
 {
   return Servo_SourceSizeList_Evaluate(mRawSet.get(), aSourceSizeList);
 }
 
 already_AddRefed<ComputedStyle>
 ServoStyleSet::ResolveServoStyle(dom::Element* aElement)
 {
   return Servo_ResolveStyle(aElement, mRawSet.get()).Consume();
 }
 
+} // namespace mozilla
+
 #endif // mozilla_ServoStyleSetInlines_h