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

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

Issue 1550233002: Move mixed content settings histograms into browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo fix Created 4 years, 11 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 183
184 Frame* parent() const override { return 0; } 184 Frame* parent() const override { return 0; }
185 Frame* top() const override { return 0; } 185 Frame* top() const override { return 0; }
186 Frame* previousSibling() const override { return 0; } 186 Frame* previousSibling() const override { return 0; }
187 Frame* nextSibling() const override { return 0; } 187 Frame* nextSibling() const override { return 0; }
188 Frame* firstChild() const override { return 0; } 188 Frame* firstChild() const override { return 0; }
189 Frame* lastChild() const override { return 0; } 189 Frame* lastChild() const override { return 0; }
190 void willBeDetached() override {} 190 void willBeDetached() override {}
191 void detached(FrameDetachType) override {} 191 void detached(FrameDetachType) override {}
192 void frameFocused() const override {} 192 void frameFocused() const override {}
193 void triedDisplayingInsecureContent(SecurityOrigin*, const KURL&) const over ride {}
194 void triedRunningInsecureContent(SecurityOrigin*, const KURL&) const overrid e {}
193 195
194 void dispatchWillSendRequest(DocumentLoader*, unsigned long, ResourceRequest &, const ResourceResponse&) override {} 196 void dispatchWillSendRequest(DocumentLoader*, unsigned long, ResourceRequest &, const ResourceResponse&) override {}
195 void dispatchDidReceiveResponse(DocumentLoader*, unsigned long, const Resour ceResponse&) override {} 197 void dispatchDidReceiveResponse(DocumentLoader*, unsigned long, const Resour ceResponse&) override {}
196 void dispatchDidFinishLoading(DocumentLoader*, unsigned long) override {} 198 void dispatchDidFinishLoading(DocumentLoader*, unsigned long) override {}
197 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const Re sourceResponse&) override {} 199 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const Re sourceResponse&) override {}
198 200
199 void dispatchDidHandleOnloadEvents() override {} 201 void dispatchDidHandleOnloadEvents() override {}
200 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {} 202 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {}
201 void dispatchWillClose() override {} 203 void dispatchWillClose() override {}
202 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override {} 204 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override {}
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 ~EmptyDragClient() override {} 330 ~EmptyDragClient() override {}
329 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; } 331 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; }
330 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {} 332 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {}
331 }; 333 };
332 334
333 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 335 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
334 336
335 } // namespace blink 337 } // namespace blink
336 338
337 #endif // EmptyClients_h 339 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698