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

Side by Side Diff: chrome/test/chromedriver/frame_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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_TEST_CHROMEDRIVER_FRAME_TRACKER_H_
6 #define CHROME_TEST_CHROMEDRIVER_FRAME_TRACKER_H_
7
8 #include <map>
9 #include <string>
10
11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h"
13 #include "chrome/test/chromedriver/devtools_event_listener.h"
14
15 namespace base {
16 class DictionaryValue;
17 class Value;
18 }
19
20 class DevToolsClient;
21 class Status;
22
23 // Tracks execution context creation.
24 class FrameTracker : public DevToolsEventListener {
25 public:
26 explicit FrameTracker(DevToolsClient* client);
27 virtual ~FrameTracker();
28
29 Status GetFrameForContextId(int context_id, std::string* frame_id);
30 Status GetContextIdForFrame(const std::string& frame_id, int* context_id);
31
32 // Overridden from DevToolsEventListener:
33 virtual Status OnConnected() OVERRIDE;
34 virtual void OnEvent(const std::string& method,
35 const base::DictionaryValue& params) OVERRIDE;
36
37 private:
38 DevToolsClient* client_;
39 std::map<std::string, int> frame_to_context_map_;
40 std::map<int, std::string> context_to_frame_map_;
41
42 DISALLOW_COPY_AND_ASSIGN(FrameTracker);
43 };
44
45 #endif // CHROME_TEST_CHROMEDRIVER_FRAME_TRACKER_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/embed_user_data_dir_in_cpp.py ('k') | chrome/test/chromedriver/frame_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698