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

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

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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 (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_WEB_VIEW_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_
6 #define CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_ 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_
7 7
8 #include <list> 8 #include <list>
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 13
14 namespace base { 14 namespace base {
15 class DictionaryValue; 15 class DictionaryValue;
16 class FilePath; 16 class FilePath;
17 class ListValue; 17 class ListValue;
18 class TimeDelta; 18 class TimeDelta;
19 class Value; 19 class Value;
20 } 20 }
21 21
22 class DevToolsClient;
23 struct Geoposition; 22 struct Geoposition;
24 class JavaScriptDialogManager; 23 class JavaScriptDialogManager;
25 struct KeyEvent; 24 struct KeyEvent;
26 struct MouseEvent; 25 struct MouseEvent;
27 struct NetworkConditions; 26 struct NetworkConditions;
28 class Status; 27 class Status;
29 class Timeout; 28 class Timeout;
30 struct TouchEvent; 29 struct TouchEvent;
31 30
32 class WebView { 31 class WebView {
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 virtual Status SynthesizePinchGesture(int x, int y, double scale_factor) = 0; 191 virtual Status SynthesizePinchGesture(int x, int y, double scale_factor) = 0;
193 192
194 virtual Status GetScreenOrientation(std::string* orientation) = 0; 193 virtual Status GetScreenOrientation(std::string* orientation) = 0;
195 194
196 virtual Status SetScreenOrientation(std::string orientation) = 0; 195 virtual Status SetScreenOrientation(std::string orientation) = 0;
197 196
198 virtual Status DeleteScreenOrientation() = 0; 197 virtual Status DeleteScreenOrientation() = 0;
199 }; 198 };
200 199
201 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_ 200 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_WEB_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/chrome/frame_tracker.h ('k') | chrome/test/chromedriver/chrome/web_view_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698