Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / timing / PerformanceNavigation.cpp
index 4683fd7..ff4865b 100644 (file)
@@ -35,7 +35,7 @@
 #include "core/loader/DocumentLoader.h"
 #include "core/loader/FrameLoaderTypes.h"
 
-namespace WebCore {
+namespace blink {
 
 PerformanceNavigation::PerformanceNavigation(LocalFrame* frame)
     : DOMWindowProperty(frame)
@@ -52,7 +52,7 @@ unsigned short PerformanceNavigation::type() const
     if (!documentLoader)
         return TYPE_NAVIGATE;
 
-    WebCore::NavigationType navigationType = documentLoader->triggeringAction().type();
+    blink::NavigationType navigationType = documentLoader->triggeringAction().type();
     switch (navigationType) {
     case NavigationTypeReload:
         return TYPE_RELOAD;
@@ -79,4 +79,4 @@ unsigned short PerformanceNavigation::redirectCount() const
     return timing->redirectCount();
 }
 
-} // namespace WebCore
+} // namespace blink