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

Side by Side Diff: webkit/glue/plugins/pepper_transport.cc

Issue 5741001: Even more virtual method deinlining. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase (windows) Created 10 years 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
« no previous file with comments | « webkit/glue/plugins/pepper_transport.h ('k') | webkit/glue/plugins/pepper_var.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "webkit/glue/plugins/pepper_transport.h" 5 #include "webkit/glue/plugins/pepper_transport.h"
6 6
7 #include "base/singleton.h" 7 #include "base/singleton.h"
8 #include "base/thread_local.h" 8 #include "base/thread_local.h"
9 #include "ppapi/c/dev/ppb_transport_dev.h" 9 #include "ppapi/c/dev/ppb_transport_dev.h"
10 #include "webkit/glue/plugins/pepper_common.h" 10 #include "webkit/glue/plugins/pepper_common.h"
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 } 123 }
124 124
125 const PPB_Transport_Dev* Transport::GetInterface() { 125 const PPB_Transport_Dev* Transport::GetInterface() {
126 return &ppb_transport; 126 return &ppb_transport;
127 } 127 }
128 128
129 Transport::~Transport() { 129 Transport::~Transport() {
130 // TODO(juberti): teardown 130 // TODO(juberti): teardown
131 } 131 }
132 132
133 Transport* Transport::AsTransport() {
134 return this;
135 }
136
133 bool Transport::Init(const char* name, 137 bool Transport::Init(const char* name,
134 const char* proto) { 138 const char* proto) {
135 // TODO(juberti): impl 139 // TODO(juberti): impl
136 return false; 140 return false;
137 } 141 }
138 142
139 } // namespace pepper 143 } // namespace pepper
140 144
OLDNEW
« no previous file with comments | « webkit/glue/plugins/pepper_transport.h ('k') | webkit/glue/plugins/pepper_var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698