summaryrefslogtreecommitdiff
path: root/chromium/tools/gn/pool.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-11-20 15:06:40 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-11-22 11:48:58 +0000
commitdaa093eea7c773db06799a13bd7e4e2e2a9f8f14 (patch)
tree96cc5e7b9194c1b29eab927730bfa419e7111c25 /chromium/tools/gn/pool.h
parentbe59a35641616a4cf23c4a13fa0632624b021c1b (diff)
downloadqtwebengine-chromium-daa093eea7c773db06799a13bd7e4e2e2a9f8f14.tar.gz
BASELINE: Update Chromium to 63.0.3239.58
Change-Id: Ia93b322a00ba4dd4004f3bcf1254063ba90e1605 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/tools/gn/pool.h')
-rw-r--r--chromium/tools/gn/pool.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/tools/gn/pool.h b/chromium/tools/gn/pool.h
index 81a021db659..42a80789ec8 100644
--- a/chromium/tools/gn/pool.h
+++ b/chromium/tools/gn/pool.h
@@ -7,6 +7,7 @@
#include <string>
+#include "base/macros.h"
#include "tools/gn/item.h"
// Represents a named pool in the dependency graph.
@@ -18,9 +19,6 @@ class Pool : public Item {
using Item::Item;
~Pool() override;
- Pool(const Pool&) = delete;
- Pool& operator=(const Pool&) = delete;
-
// Item implementation.
Pool* AsPool() override;
const Pool* AsPool() const override;
@@ -36,6 +34,8 @@ class Pool : public Item {
std::string GetNinjaName(bool include_toolchain) const;
int64_t depth_ = 0;
+
+ DISALLOW_COPY_AND_ASSIGN(Pool);
};
#endif // TOOLS_GN_POOL_H_