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

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

Issue 2367393002: Migrating MediaSession messages to mojo (Closed)
Patch Set: blink typemap (need to revert blink typemap, only need content/ reivew) Created 4 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) 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 const String&, 319 const String&,
320 bool, 320 bool,
321 DetachedPluginPolicy) override; 321 DetachedPluginPolicy) override;
322 bool canCreatePluginWithoutRenderer(const String& mimeType) const override { 322 bool canCreatePluginWithoutRenderer(const String& mimeType) const override {
323 return false; 323 return false;
324 } 324 }
325 std::unique_ptr<WebMediaPlayer> createWebMediaPlayer( 325 std::unique_ptr<WebMediaPlayer> createWebMediaPlayer(
326 HTMLMediaElement&, 326 HTMLMediaElement&,
327 const WebMediaPlayerSource&, 327 const WebMediaPlayerSource&,
328 WebMediaPlayerClient*) override; 328 WebMediaPlayerClient*) override;
329 std::unique_ptr<WebMediaSession> createWebMediaSession() override;
330 329
331 ObjectContentType getObjectContentType(const KURL&, 330 ObjectContentType getObjectContentType(const KURL&,
332 const String&, 331 const String&,
333 bool) override { 332 bool) override {
334 return ObjectContentType(); 333 return ObjectContentType();
335 } 334 }
336 335
337 void didCreateNewDocument() override {} 336 void didCreateNewDocument() override {}
338 void dispatchDidClearWindowObjectInMainWorld() override {} 337 void dispatchDidClearWindowObjectInMainWorld() override {}
339 void documentElementAvailable() override {} 338 void documentElementAvailable() override {}
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 ~EmptyContextMenuClient() override {} 424 ~EmptyContextMenuClient() override {}
426 bool showContextMenu(const ContextMenu*, bool) override { return false; } 425 bool showContextMenu(const ContextMenu*, bool) override { return false; }
427 void clearContextMenu() override {} 426 void clearContextMenu() override {}
428 }; 427 };
429 428
430 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 429 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
431 430
432 } // namespace blink 431 } // namespace blink
433 432
434 #endif // EmptyClients_h 433 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698