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

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

Issue 12848005: [chromedriver] Separate stuff of chrome from chromedriver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments and fix compile error on mac. Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_DOM_TRACKER_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_DOM_TRACKER_H_
6 #define CHROME_TEST_CHROMEDRIVER_DOM_TRACKER_H_ 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_DOM_TRACKER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "chrome/test/chromedriver/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
23 // Tracks the state of the DOM and execution context creation. 23 // Tracks the state of the DOM and execution context creation.
(...skipping 12 matching lines...) Expand all
36 private: 36 private:
37 DevToolsClient* client_; 37 DevToolsClient* client_;
38 bool ProcessNodeList(const base::Value* nodes); 38 bool ProcessNodeList(const base::Value* nodes);
39 bool ProcessNode(const base::Value* node); 39 bool ProcessNode(const base::Value* node);
40 40
41 std::map<int, std::string> node_to_frame_map_; 41 std::map<int, std::string> node_to_frame_map_;
42 42
43 DISALLOW_COPY_AND_ASSIGN(DomTracker); 43 DISALLOW_COPY_AND_ASSIGN(DomTracker);
44 }; 44 };
45 45
46 #endif // CHROME_TEST_CHROMEDRIVER_DOM_TRACKER_H_ 46 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_DOM_TRACKER_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/chrome/devtools_event_listener.h ('k') | chrome/test/chromedriver/chrome/dom_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698