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

Unified Diff: src/globals.h

Issue 422593003: Initial GetSample implementation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed the comments. Created 6 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 side-by-side diff with in-line comments
Download patch
Index: src/globals.h
diff --git a/src/globals.h b/src/globals.h
index 1ac0dcfef890d39ea6f619b2b55da29db0290a7b..e4a9c5baa357caf0acda7e6e2b536affec84e9a8 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -5,6 +5,7 @@
#ifndef V8_GLOBALS_H_
#define V8_GLOBALS_H_
+#include "include/v8.h"
#include "include/v8stdint.h"
#include "src/base/build_config.h"
@@ -510,22 +511,6 @@ struct AccessorDescriptor {
};
-// Logging and profiling. A StateTag represents a possible state of
-// the VM. The logger maintains a stack of these. Creating a VMState
-// object enters a state by pushing on the stack, and destroying a
-// VMState object leaves a state by popping the current state from the
-// stack.
-
-enum StateTag {
- JS,
- GC,
- COMPILER,
- OTHER,
- EXTERNAL,
- IDLE
-};
-
-
// -----------------------------------------------------------------------------
// Macros

Powered by Google App Engine
This is Rietveld 408576698