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

Side by Side Diff: src/log-utils.cc

Issue 1297583002: Remove grab-bag includes of v8.h from several files. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-includes-heap-1
Patch Set: Fix Windows compilation. Created 5 years, 4 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 | « src/log-utils.h ('k') | src/modules.cc » ('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 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project 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 "src/v8.h" 5 #include "src/log-utils.h"
6 6
7 #include "src/log-utils.h" 7 #include "src/assert-scope.h"
8 #include "src/base/platform/platform.h"
9 #include "src/objects-inl.h"
8 #include "src/string-stream.h" 10 #include "src/string-stream.h"
11 #include "src/utils.h"
9 #include "src/version.h" 12 #include "src/version.h"
10 13
11 namespace v8 { 14 namespace v8 {
12 namespace internal { 15 namespace internal {
13 16
14 17
15 const char* const Log::kLogToTemporaryFile = "&"; 18 const char* const Log::kLogToTemporaryFile = "&";
16 const char* const Log::kLogToConsole = "-"; 19 const char* const Log::kLogToConsole = "-";
17 20
18 21
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 const int written = log_->WriteToFile(log_->message_buffer_, pos_); 238 const int written = log_->WriteToFile(log_->message_buffer_, pos_);
236 if (written != pos_) { 239 if (written != pos_) {
237 log_->stop(); 240 log_->stop();
238 log_->logger_->LogFailure(); 241 log_->logger_->LogFailure();
239 } 242 }
240 } 243 }
241 244
242 245
243 } // namespace internal 246 } // namespace internal
244 } // namespace v8 247 } // namespace v8
OLDNEW
« no previous file with comments | « src/log-utils.h ('k') | src/modules.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698