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

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

Issue 2633253002: Split content script injections into multiple tasks (Closed)
Patch Set: rebase Created 3 years, 9 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 const String&, 342 const String&,
343 bool) override { 343 bool) override {
344 return ObjectContentType(); 344 return ObjectContentType();
345 } 345 }
346 346
347 void didCreateNewDocument() override {} 347 void didCreateNewDocument() override {}
348 void dispatchDidClearWindowObjectInMainWorld() override {} 348 void dispatchDidClearWindowObjectInMainWorld() override {}
349 void documentElementAvailable() override {} 349 void documentElementAvailable() override {}
350 void runScriptsAtDocumentElementAvailable() override {} 350 void runScriptsAtDocumentElementAvailable() override {}
351 void runScriptsAtDocumentReady(bool) override {} 351 void runScriptsAtDocumentReady(bool) override {}
352 void runScriptsAtDocumentIdle() override {}
352 353
353 void didCreateScriptContext(v8::Local<v8::Context>, 354 void didCreateScriptContext(v8::Local<v8::Context>,
354 int worldId) override {} 355 int worldId) override {}
355 void willReleaseScriptContext(v8::Local<v8::Context>, int worldId) override {} 356 void willReleaseScriptContext(v8::Local<v8::Context>, int worldId) override {}
356 bool allowScriptExtensions() override { return false; } 357 bool allowScriptExtensions() override { return false; }
357 358
358 WebCookieJar* cookieJar() const override { return 0; } 359 WebCookieJar* cookieJar() const override { return 0; }
359 360
360 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider() 361 std::unique_ptr<WebServiceWorkerProvider> createServiceWorkerProvider()
361 override; 362 override;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 Frame* nextSibling() const override { return nullptr; } 466 Frame* nextSibling() const override { return nullptr; }
466 Frame* firstChild() const override { return nullptr; } 467 Frame* firstChild() const override { return nullptr; }
467 void frameFocused() const override {} 468 void frameFocused() const override {}
468 }; 469 };
469 470
470 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 471 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
471 472
472 } // namespace blink 473 } // namespace blink
473 474
474 #endif // EmptyClients_h 475 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698