Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / public / web / WebPerformance.h
index a858f35..6fd8c5b 100644 (file)
 #include "platform/heap/Handle.h"
 #endif
 
-namespace WebCore { class Performance; }
-
 namespace blink {
 
+class Performance;
+
 class WebPerformance {
 public:
     ~WebPerformance() { reset(); }
@@ -86,12 +86,12 @@ public:
     BLINK_EXPORT double loadEventEnd() const;
 
 #if BLINK_IMPLEMENTATION
-    WebPerformance(const PassRefPtrWillBeRawPtr<WebCore::Performance>&);
-    WebPerformance& operator=(const PassRefPtrWillBeRawPtr<WebCore::Performance>&);
+    WebPerformance(const PassRefPtrWillBeRawPtr<Performance>&);
+    WebPerformance& operator=(const PassRefPtrWillBeRawPtr<Performance>&);
 #endif
 
 private:
-    WebPrivatePtr<WebCore::Performance> m_private;
+    WebPrivatePtr<Performance> m_private;
 };
 
 } // namespace blink