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

Side by Side Diff: content/public/browser/webrtc_internals.h

Issue 12086018: GTTF: Add missing virtual destructors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_WEBRTC_INTERNALS_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_WEBRTC_INTERNALS_H_
6 #define CONTENT_PUBLIC_BROWSER_WEBRTC_INTERNALS_H_ 6 #define CONTENT_PUBLIC_BROWSER_WEBRTC_INTERNALS_H_
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 16 matching lines...) Expand all
27 // |pid| is the renderer process id, |lid| is the renderer local id. 27 // |pid| is the renderer process id, |lid| is the renderer local id.
28 virtual void RemovePeerConnection(base::ProcessId pid, int lid) = 0; 28 virtual void RemovePeerConnection(base::ProcessId pid, int lid) = 0;
29 29
30 // This method is called when a PeerConnection is updated. 30 // This method is called when a PeerConnection is updated.
31 // |pid| is the renderer process id, |lid| is the renderer local id, 31 // |pid| is the renderer process id, |lid| is the renderer local id,
32 // |type| is the update type, |value| is the detail of the update. 32 // |type| is the update type, |value| is the detail of the update.
33 virtual void UpdatePeerConnection(base::ProcessId pid, 33 virtual void UpdatePeerConnection(base::ProcessId pid,
34 int lid, 34 int lid,
35 const std::string& type, 35 const std::string& type,
36 const std::string& value) = 0; 36 const std::string& value) = 0;
37
38 protected:
39 virtual ~WebRTCInternals() { }
37 }; 40 };
38 41
39 } // namespace content 42 } // namespace content
40 43
41 #endif // CONTENT_PUBLIC_BROWSER_WEBRTC_INTERNALSH_ 44 #endif // CONTENT_PUBLIC_BROWSER_WEBRTC_INTERNALSH_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698