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

Side by Side Diff: third_party/WebKit/public/web/WebFrameClient.h

Issue 2224713002: Move WebSocketHandleImpl into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix issue w/ Java bindings missing a dependency Created 4 years, 3 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) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 class WebFormElement; 84 class WebFormElement;
85 class WebInstalledAppClient; 85 class WebInstalledAppClient;
86 class WebMediaPlayer; 86 class WebMediaPlayer;
87 class WebMediaPlayerClient; 87 class WebMediaPlayerClient;
88 class WebMediaPlayerEncryptedMediaClient; 88 class WebMediaPlayerEncryptedMediaClient;
89 class WebMediaPlayerSource; 89 class WebMediaPlayerSource;
90 class WebMediaSession; 90 class WebMediaSession;
91 class WebMediaStream; 91 class WebMediaStream;
92 class WebNotificationPermissionCallback; 92 class WebNotificationPermissionCallback;
93 class WebServiceWorkerProvider; 93 class WebServiceWorkerProvider;
94 class WebSocketHandle;
95 class WebPlugin; 94 class WebPlugin;
96 class WebPresentationClient; 95 class WebPresentationClient;
97 class WebPushClient; 96 class WebPushClient;
98 class WebRTCPeerConnectionHandler; 97 class WebRTCPeerConnectionHandler;
99 class WebScreenOrientationClient; 98 class WebScreenOrientationClient;
100 class WebString; 99 class WebString;
101 class WebURL; 100 class WebURL;
102 class WebURLResponse; 101 class WebURLResponse;
103 class WebUserMediaClient; 102 class WebUserMediaClient;
104 class WebWorkerContentSettingsClientProxy; 103 class WebWorkerContentSettingsClientProxy;
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 // WebStorageQuotaCallbacks::didGrantStorageQuota will be called when 554 // WebStorageQuotaCallbacks::didGrantStorageQuota will be called when
556 // a new quota is granted. WebStorageQuotaCallbacks::didFail 555 // a new quota is granted. WebStorageQuotaCallbacks::didFail
557 // is called with an error code otherwise. 556 // is called with an error code otherwise.
558 // Note that the requesting quota size may not always be granted and 557 // Note that the requesting quota size may not always be granted and
559 // a smaller amount of quota than requested might be returned. 558 // a smaller amount of quota than requested might be returned.
560 virtual void requestStorageQuota( 559 virtual void requestStorageQuota(
561 WebStorageQuotaType, 560 WebStorageQuotaType,
562 unsigned long long newQuotaInBytes, 561 unsigned long long newQuotaInBytes,
563 WebStorageQuotaCallbacks) { } 562 WebStorageQuotaCallbacks) { }
564 563
565 // WebSocket -----------------------------------------------------
566
567 // A WebSocket object is going to open a new WebSocket connection.
568 virtual void willOpenWebSocket(WebSocketHandle*) { }
569
570 // MediaStream ----------------------------------------------------- 564 // MediaStream -----------------------------------------------------
571 565
572 // A new WebRTCPeerConnectionHandler is created. 566 // A new WebRTCPeerConnectionHandler is created.
573 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) { } 567 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) { }
574 568
575 virtual WebUserMediaClient* userMediaClient() { return 0; } 569 virtual WebUserMediaClient* userMediaClient() { return 0; }
576 570
577 571
578 // Encrypted Media ------------------------------------------------- 572 // Encrypted Media -------------------------------------------------
579 573
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
709 return WebURL(); 703 return WebURL();
710 } 704 }
711 705
712 protected: 706 protected:
713 virtual ~WebFrameClient() { } 707 virtual ~WebFrameClient() { }
714 }; 708 };
715 709
716 } // namespace blink 710 } // namespace blink
717 711
718 #endif 712 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698