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

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: Address review feedback except the location of websocket.mojom 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
« no previous file with comments | « third_party/WebKit/public/platform/modules/websockets/websocket.mojom ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 // WebStorageQuotaCallbacks::didGrantStorageQuota will be called when 543 // WebStorageQuotaCallbacks::didGrantStorageQuota will be called when
545 // a new quota is granted. WebStorageQuotaCallbacks::didFail 544 // a new quota is granted. WebStorageQuotaCallbacks::didFail
546 // is called with an error code otherwise. 545 // is called with an error code otherwise.
547 // Note that the requesting quota size may not always be granted and 546 // Note that the requesting quota size may not always be granted and
548 // a smaller amount of quota than requested might be returned. 547 // a smaller amount of quota than requested might be returned.
549 virtual void requestStorageQuota( 548 virtual void requestStorageQuota(
550 WebStorageQuotaType, 549 WebStorageQuotaType,
551 unsigned long long newQuotaInBytes, 550 unsigned long long newQuotaInBytes,
552 WebStorageQuotaCallbacks) { } 551 WebStorageQuotaCallbacks) { }
553 552
554 // WebSocket -----------------------------------------------------
555
556 // A WebSocket object is going to open a new WebSocket connection.
557 virtual void willOpenWebSocket(WebSocketHandle*) { }
558
559 // MediaStream ----------------------------------------------------- 553 // MediaStream -----------------------------------------------------
560 554
561 // A new WebRTCPeerConnectionHandler is created. 555 // A new WebRTCPeerConnectionHandler is created.
562 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) { } 556 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) { }
563 557
564 virtual WebUserMediaClient* userMediaClient() { return 0; } 558 virtual WebUserMediaClient* userMediaClient() { return 0; }
565 559
566 560
567 // Encrypted Media ------------------------------------------------- 561 // Encrypted Media -------------------------------------------------
568 562
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 return WebURL(); 692 return WebURL();
699 } 693 }
700 694
701 protected: 695 protected:
702 virtual ~WebFrameClient() { } 696 virtual ~WebFrameClient() { }
703 }; 697 };
704 698
705 } // namespace blink 699 } // namespace blink
706 700
707 #endif 701 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/public/platform/modules/websockets/websocket.mojom ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698