Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(659)

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp

Issue 1373693002: Move ServiceWorker public headers to public/{web,platform}/modules/serviceworker (3/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 #include "platform/UserGestureIndicator.h" 64 #include "platform/UserGestureIndicator.h"
65 #include "platform/exported/WrappedResourceRequest.h" 65 #include "platform/exported/WrappedResourceRequest.h"
66 #include "platform/exported/WrappedResourceResponse.h" 66 #include "platform/exported/WrappedResourceResponse.h"
67 #include "platform/network/HTTPParsers.h" 67 #include "platform/network/HTTPParsers.h"
68 #include "platform/plugins/PluginData.h" 68 #include "platform/plugins/PluginData.h"
69 #include "public/platform/Platform.h" 69 #include "public/platform/Platform.h"
70 #include "public/platform/WebApplicationCacheHost.h" 70 #include "public/platform/WebApplicationCacheHost.h"
71 #include "public/platform/WebMimeRegistry.h" 71 #include "public/platform/WebMimeRegistry.h"
72 #include "public/platform/WebRTCPeerConnectionHandler.h" 72 #include "public/platform/WebRTCPeerConnectionHandler.h"
73 #include "public/platform/WebSecurityOrigin.h" 73 #include "public/platform/WebSecurityOrigin.h"
74 #include "public/platform/WebServiceWorkerProvider.h"
75 #include "public/platform/WebServiceWorkerProviderClient.h"
76 #include "public/platform/WebURL.h" 74 #include "public/platform/WebURL.h"
77 #include "public/platform/WebURLError.h" 75 #include "public/platform/WebURLError.h"
78 #include "public/platform/WebVector.h" 76 #include "public/platform/WebVector.h"
77 #include "public/platform/modules/serviceworker/WebServiceWorkerProvider.h"
78 #include "public/platform/modules/serviceworker/WebServiceWorkerProviderClient.h "
79 #include "public/web/WebAutofillClient.h" 79 #include "public/web/WebAutofillClient.h"
80 #include "public/web/WebContentSettingsClient.h" 80 #include "public/web/WebContentSettingsClient.h"
81 #include "public/web/WebDOMEvent.h" 81 #include "public/web/WebDOMEvent.h"
82 #include "public/web/WebDocument.h" 82 #include "public/web/WebDocument.h"
83 #include "public/web/WebFormElement.h" 83 #include "public/web/WebFormElement.h"
84 #include "public/web/WebFrameClient.h" 84 #include "public/web/WebFrameClient.h"
85 #include "public/web/WebNode.h" 85 #include "public/web/WebNode.h"
86 #include "public/web/WebPlugin.h" 86 #include "public/web/WebPlugin.h"
87 #include "public/web/WebPluginParams.h" 87 #include "public/web/WebPluginParams.h"
88 #include "public/web/WebViewClient.h" 88 #include "public/web/WebViewClient.h"
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after
951 951
952 void FrameLoaderClientImpl::suddenTerminationDisablerChanged(bool present, Sudde nTerminationDisablerType type) 952 void FrameLoaderClientImpl::suddenTerminationDisablerChanged(bool present, Sudde nTerminationDisablerType type)
953 { 953 {
954 if (m_webFrame->client()) { 954 if (m_webFrame->client()) {
955 m_webFrame->client()->suddenTerminationDisablerChanged( 955 m_webFrame->client()->suddenTerminationDisablerChanged(
956 present, static_cast<WebFrameClient::SuddenTerminationDisablerType>( type)); 956 present, static_cast<WebFrameClient::SuddenTerminationDisablerType>( type));
957 } 957 }
958 } 958 }
959 959
960 } // namespace blink 960 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698