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

Unified Diff: src/compiler/state-values-utils.h

Issue 2416243002: Make unittests work in component build (Closed)
Patch Set: updates Created 4 years, 2 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
« no previous file with comments | « src/compiler/source-position.h ('k') | src/compiler/tail-call-optimization.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/state-values-utils.h
diff --git a/src/compiler/state-values-utils.h b/src/compiler/state-values-utils.h
index 704f5f63a5b42f51d6c88d79aaf7bf5f26cb00e1..14b1b9e59963755c2b0e543becb3c46f3220e994 100644
--- a/src/compiler/state-values-utils.h
+++ b/src/compiler/state-values-utils.h
@@ -6,6 +6,7 @@
#define V8_COMPILER_STATE_VALUES_UTILS_H_
#include "src/compiler/js-graph.h"
+#include "src/globals.h"
namespace v8 {
namespace internal {
@@ -14,7 +15,7 @@ namespace compiler {
class Graph;
-class StateValuesCache {
+class V8_EXPORT_PRIVATE StateValuesCache {
public:
explicit StateValuesCache(JSGraph* js_graph);
@@ -60,7 +61,7 @@ class StateValuesCache {
Node* empty_state_values_;
};
-class StateValuesAccess {
+class V8_EXPORT_PRIVATE StateValuesAccess {
public:
struct TypedNode {
Node* node;
@@ -68,7 +69,7 @@ class StateValuesAccess {
TypedNode(Node* node, MachineType type) : node(node), type(type) {}
};
- class iterator {
+ class V8_EXPORT_PRIVATE iterator {
public:
// Bare minimum of operators needed for range iteration.
bool operator!=(iterator& other);
« no previous file with comments | « src/compiler/source-position.h ('k') | src/compiler/tail-call-optimization.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698