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

Side by Side Diff: third_party/WebKit/Source/core/loader/EmptyClients.h

Issue 1983913002: Test to see if we can bring in document data from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: WebLocalFrameImpl::loadData Created 4 years, 7 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) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 223
224 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; 224 void dispatchWillSendSubmitEvent(HTMLFormElement*) override;
225 void dispatchWillSubmitForm(HTMLFormElement*) override; 225 void dispatchWillSubmitForm(HTMLFormElement*) override;
226 226
227 void didStartLoading(LoadStartType) override {} 227 void didStartLoading(LoadStartType) override {}
228 void progressEstimateChanged(double) override {} 228 void progressEstimateChanged(double) override {}
229 void didStopLoading() override {} 229 void didStopLoading() override {}
230 230
231 void loadURLExternally(const ResourceRequest&, NavigationPolicy, const Strin g&, bool) override {} 231 void loadURLExternally(const ResourceRequest&, NavigationPolicy, const Strin g&, bool) override {}
232 232
233 DocumentLoader* createDocumentLoader(LocalFrame*, const ResourceRequest&, co nst SubstituteData&) override; 233 DocumentLoader* createDocumentLoader(LocalFrame*, const ResourceRequest&, co nst SubstituteData&, int initiator) override;
234 234
235 String userAgent() override { return ""; } 235 String userAgent() override { return ""; }
236 236
237 String doNotTrackValue() override { return String(); } 237 String doNotTrackValue() override { return String(); }
238 238
239 void transitionToCommittedForNewPage() override {} 239 void transitionToCommittedForNewPage() override {}
240 240
241 bool navigateBackForward(int offset) const override { return false; } 241 bool navigateBackForward(int offset) const override { return false; }
242 void didDisplayInsecureContent() override {} 242 void didDisplayInsecureContent() override {}
243 void didRunInsecureContent(SecurityOrigin*, const KURL&) override {} 243 void didRunInsecureContent(SecurityOrigin*, const KURL&) override {}
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 ~EmptyContextMenuClient() override {} 326 ~EmptyContextMenuClient() override {}
327 void showContextMenu(const ContextMenu*) override {} 327 void showContextMenu(const ContextMenu*) override {}
328 void clearContextMenu() override {} 328 void clearContextMenu() override {}
329 }; 329 };
330 330
331 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 331 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
332 332
333 } // namespace blink 333 } // namespace blink
334 334
335 #endif // EmptyClients_h 335 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | third_party/WebKit/Source/core/loader/EmptyClients.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698