OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_FRAME_TRACKER_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_FRAME_TRACKER_H_ |
6 #define CHROME_TEST_CHROMEDRIVER_CHROME_FRAME_TRACKER_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_FRAME_TRACKER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | |
12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" |
13 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h" | 13 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h" |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class DictionaryValue; | 16 class DictionaryValue; |
17 class Value; | 17 class Value; |
18 } | 18 } |
19 | 19 |
20 class DevToolsClient; | 20 class DevToolsClient; |
21 class Status; | 21 class Status; |
22 | 22 |
(...skipping 11 matching lines...) Expand all Loading... |
34 const std::string& method, | 34 const std::string& method, |
35 const base::DictionaryValue& params) override; | 35 const base::DictionaryValue& params) override; |
36 | 36 |
37 private: | 37 private: |
38 std::map<std::string, int> frame_to_context_map_; | 38 std::map<std::string, int> frame_to_context_map_; |
39 | 39 |
40 DISALLOW_COPY_AND_ASSIGN(FrameTracker); | 40 DISALLOW_COPY_AND_ASSIGN(FrameTracker); |
41 }; | 41 }; |
42 | 42 |
43 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_FRAME_TRACKER_H_ | 43 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_FRAME_TRACKER_H_ |
OLD | NEW |