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

Side by Side Diff: runtime/bin/vmservice_dartium.cc

Issue 1800863002: Cleanup in //runtime/bin (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 | « runtime/bin/utils_win.cc ('k') | runtime/bin/vmservice_impl.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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "bin/vmservice_dartium.h" 5 #include "bin/vmservice_dartium.h"
6 6
7 #include "bin/builtin.h" 7 #include "bin/builtin.h"
8 #include "bin/dartutils.h" 8 #include "bin/dartutils.h"
9 #include "bin/eventhandler.h" 9 #include "bin/eventhandler.h"
10 #include "bin/platform.h" 10 #include "bin/platform.h"
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 141
142 // We've processed size_in bytes. 142 // We've processed size_in bytes.
143 input_cursor += size_in; 143 input_cursor += size_in;
144 144
145 // We're finished decompressing when zlib tells us. 145 // We're finished decompressing when zlib tells us.
146 } while (ret != Z_STREAM_END); 146 } while (ret != Z_STREAM_END);
147 147
148 inflateEnd(&strm); 148 inflateEnd(&strm);
149 } 149 }
150 150
151
151 /* DISALLOW_ALLOCATION */ 152 /* DISALLOW_ALLOCATION */
152 void VmServiceServer::operator delete(void* pointer) { 153 void VmServiceServer::operator delete(void* pointer) {
153 fprintf(stderr, "unreachable code\n"); 154 fprintf(stderr, "unreachable code\n");
154 abort(); 155 abort();
155 } 156 }
156 157
157 } // namespace bin 158 } // namespace bin
158 } // namespace dart 159 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/bin/utils_win.cc ('k') | runtime/bin/vmservice_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698