| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 5 * (http://www.torchmobile.com/) | 5 * (http://www.torchmobile.com/) |
| 6 * Copyright (C) 2009 Adam Barth. All rights reserved. | 6 * Copyright (C) 2009 Adam Barth. All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include "core/loader/FormSubmission.h" | 45 #include "core/loader/FormSubmission.h" |
| 46 #include "core/loader/FrameLoadRequest.h" | 46 #include "core/loader/FrameLoadRequest.h" |
| 47 #include "core/loader/FrameLoader.h" | 47 #include "core/loader/FrameLoader.h" |
| 48 #include "core/loader/FrameLoaderStateMachine.h" | 48 #include "core/loader/FrameLoaderStateMachine.h" |
| 49 #include "core/page/Page.h" | 49 #include "core/page/Page.h" |
| 50 #include "core/probe/CoreProbes.h" | 50 #include "core/probe/CoreProbes.h" |
| 51 #include "platform/Histogram.h" | 51 #include "platform/Histogram.h" |
| 52 #include "platform/SharedBuffer.h" | 52 #include "platform/SharedBuffer.h" |
| 53 #include "platform/UserGestureIndicator.h" | 53 #include "platform/UserGestureIndicator.h" |
| 54 #include "platform/loader/fetch/ResourceLoaderOptions.h" | 54 #include "platform/loader/fetch/ResourceLoaderOptions.h" |
| 55 #include "platform/wtf/CurrentTime.h" |
| 56 #include "platform/wtf/PtrUtil.h" |
| 55 #include "public/platform/Platform.h" | 57 #include "public/platform/Platform.h" |
| 56 #include "public/platform/WebCachePolicy.h" | 58 #include "public/platform/WebCachePolicy.h" |
| 57 #include "public/platform/WebScheduler.h" | 59 #include "public/platform/WebScheduler.h" |
| 58 #include "wtf/CurrentTime.h" | |
| 59 #include "wtf/PtrUtil.h" | |
| 60 | 60 |
| 61 namespace blink { | 61 namespace blink { |
| 62 | 62 |
| 63 namespace { | 63 namespace { |
| 64 | 64 |
| 65 // Add new scheduled navigation types before ScheduledLastEntry | 65 // Add new scheduled navigation types before ScheduledLastEntry |
| 66 enum ScheduledNavigationType { | 66 enum ScheduledNavigationType { |
| 67 kScheduledReload, | 67 kScheduledReload, |
| 68 kScheduledFormSubmission, | 68 kScheduledFormSubmission, |
| 69 kScheduledURLNavigation, | 69 kScheduledURLNavigation, |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 navigate_task_handle_.Cancel(); | 544 navigate_task_handle_.Cancel(); |
| 545 redirect_.Clear(); | 545 redirect_.Clear(); |
| 546 } | 546 } |
| 547 | 547 |
| 548 DEFINE_TRACE(NavigationScheduler) { | 548 DEFINE_TRACE(NavigationScheduler) { |
| 549 visitor->Trace(frame_); | 549 visitor->Trace(frame_); |
| 550 visitor->Trace(redirect_); | 550 visitor->Trace(redirect_); |
| 551 } | 551 } |
| 552 | 552 |
| 553 } // namespace blink | 553 } // namespace blink |
| OLD | NEW |