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_NAVIGATION_TRACKER_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_NAVIGATION_TRACKER_H_ |
6 #define CHROME_TEST_CHROMEDRIVER_CHROME_NAVIGATION_TRACKER_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_NAVIGATION_TRACKER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
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 "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h" | 14 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h" |
15 #include "chrome/test/chromedriver/chrome/status.h" | 15 #include "chrome/test/chromedriver/chrome/status.h" |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 class DictionaryValue; | 18 class DictionaryValue; |
19 } | 19 } |
20 | 20 |
21 struct BrowserInfo; | 21 struct BrowserInfo; |
22 class DevToolsClient; | 22 class DevToolsClient; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 bool load_event_fired_; | 66 bool load_event_fired_; |
67 bool timed_out_; | 67 bool timed_out_; |
68 | 68 |
69 void ResetLoadingState(LoadingState loading_state); | 69 void ResetLoadingState(LoadingState loading_state); |
70 bool IsExpectingFrameLoadingEvents(); | 70 bool IsExpectingFrameLoadingEvents(); |
71 | 71 |
72 DISALLOW_COPY_AND_ASSIGN(NavigationTracker); | 72 DISALLOW_COPY_AND_ASSIGN(NavigationTracker); |
73 }; | 73 }; |
74 | 74 |
75 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_NAVIGATION_TRACKER_H_ | 75 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_NAVIGATION_TRACKER_H_ |
OLD | NEW |