summaryrefslogtreecommitdiffstats
path: root/gin
diff options
context:
space:
mode:
authorkulkarni.a <kulkarni.a@samsung.com>2014-09-22 03:44:48 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-22 10:44:58 +0000
commita3eab57adfb32b95e2cd5abf03b536c4a017aa95 (patch)
tree9df852e2461f192796d033d1e7911db38c44192b /gin
parentf5d0c07d2afeffee8f5ed0b49734786c633108f4 (diff)
downloadchromium_src-a3eab57adfb32b95e2cd5abf03b536c4a017aa95.zip
chromium_src-a3eab57adfb32b95e2cd5abf03b536c4a017aa95.tar.gz
chromium_src-a3eab57adfb32b95e2cd5abf03b536c4a017aa95.tar.bz2
Added the "DISALLOW_COPY_AND_ASSIGN(Timer);" for Timer class in gin/module/timer.h.
BUG= Review URL: https://codereview.chromium.org/587713002 Cr-Commit-Position: refs/heads/master@{#295948}
Diffstat (limited to 'gin')
-rw-r--r--gin/modules/timer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gin/modules/timer.h b/gin/modules/timer.h
index da17fe1..1ec0b93 100644
--- a/gin/modules/timer.h
+++ b/gin/modules/timer.h
@@ -42,6 +42,7 @@ class GIN_EXPORT Timer : public Wrappable<Timer> {
base::WeakPtr<gin::Runner> runner_;
base::WeakPtrFactory<Timer> weak_factory_;
+ DISALLOW_COPY_AND_ASSIGN(Timer);
};