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

Side by Side Diff: chrome/test/automation/window_proxy.h

Issue 3179017: FBTF: Remove "obviously" unneeded standard C++ library #includes. (Closed)
Patch Set: fixed mac oopsie Created 10 years, 4 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_AUTOMATION_WINDOW_PROXY_H__ 5 #ifndef CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__
6 #define CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__ 6 #define CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__
7 #pragma once 7 #pragma once
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
11 #if defined(OS_WIN) 11 #if defined(OS_WIN)
12 #include <windows.h> 12 #include <windows.h>
13 #endif 13 #endif
14 14
15 #include <string>
16
17 #include "base/keyboard_codes.h" 15 #include "base/keyboard_codes.h"
18 #include "base/string16.h" 16 #include "base/string16.h"
19 #include "base/thread.h" 17 #include "base/thread.h"
20 #include "chrome/test/automation/automation_handle_tracker.h" 18 #include "chrome/test/automation/automation_handle_tracker.h"
21 19
22 class BrowserProxy; 20 class BrowserProxy;
23 class WindowProxy; 21 class WindowProxy;
24 22
25 namespace gfx { 23 namespace gfx {
26 class Point; 24 class Point;
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 // before the specified timeout. 101 // before the specified timeout.
104 scoped_refptr<BrowserProxy> GetBrowserWithTimeout(uint32 timeout_ms, 102 scoped_refptr<BrowserProxy> GetBrowserWithTimeout(uint32 timeout_ms,
105 bool* is_timeout); 103 bool* is_timeout);
106 protected: 104 protected:
107 virtual ~WindowProxy() {} 105 virtual ~WindowProxy() {}
108 private: 106 private:
109 DISALLOW_COPY_AND_ASSIGN(WindowProxy); 107 DISALLOW_COPY_AND_ASSIGN(WindowProxy);
110 }; 108 };
111 109
112 #endif // CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__ 110 #endif // CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__
OLDNEW
« no previous file with comments | « chrome/service/cloud_print/cloud_print_proxy_backend.h ('k') | chrome/test/browser_with_test_window_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698