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

Side by Side Diff: chrome/test/chromedriver/chrome/heap_snapshot_taker.h

Issue 637933002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium 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 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_HEAP_SNAPSHOT_TAKER_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_HEAP_SNAPSHOT_TAKER_H_
6 #define CHROME_TEST_CHROMEDRIVER_CHROME_HEAP_SNAPSHOT_TAKER_H_ 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_HEAP_SNAPSHOT_TAKER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 13 matching lines...) Expand all
24 class HeapSnapshotTaker : public DevToolsEventListener { 24 class HeapSnapshotTaker : public DevToolsEventListener {
25 public: 25 public:
26 explicit HeapSnapshotTaker(DevToolsClient* client); 26 explicit HeapSnapshotTaker(DevToolsClient* client);
27 virtual ~HeapSnapshotTaker(); 27 virtual ~HeapSnapshotTaker();
28 28
29 Status TakeSnapshot(scoped_ptr<base::Value>* snapshot); 29 Status TakeSnapshot(scoped_ptr<base::Value>* snapshot);
30 30
31 // Overridden from DevToolsEventListener: 31 // Overridden from DevToolsEventListener:
32 virtual Status OnEvent(DevToolsClient* client, 32 virtual Status OnEvent(DevToolsClient* client,
33 const std::string& method, 33 const std::string& method,
34 const base::DictionaryValue& params) OVERRIDE; 34 const base::DictionaryValue& params) override;
35 35
36 private: 36 private:
37 Status TakeSnapshotInternal(); 37 Status TakeSnapshotInternal();
38 38
39 DevToolsClient* client_; 39 DevToolsClient* client_;
40 std::string snapshot_; 40 std::string snapshot_;
41 41
42 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotTaker); 42 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotTaker);
43 }; 43 };
44 44
45 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_HEAP_SNAPSHOT_TAKER_H_ 45 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_HEAP_SNAPSHOT_TAKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698