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

Side by Side Diff: chrome/test/automation/automation_proxy.cc

Issue 5977010: Move CancellationFlag and WaitableEvent to the synchronization subdirectory.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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) 2010 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 #include "chrome/test/automation/automation_proxy.h" 5 #include "chrome/test/automation/automation_proxy.h"
6 6
7 #include <gtest/gtest.h> 7 #include <gtest/gtest.h>
8 8
9 #include <sstream> 9 #include <sstream>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/threading/platform_thread.h" 13 #include "base/threading/platform_thread.h"
14 #include "base/process_util.h" 14 #include "base/process_util.h"
15 #include "base/ref_counted.h" 15 #include "base/ref_counted.h"
16 #include "base/waitable_event.h" 16 #include "base/synchronization/waitable_event.h"
17 #include "chrome/common/automation_constants.h" 17 #include "chrome/common/automation_constants.h"
18 #include "chrome/common/automation_messages.h" 18 #include "chrome/common/automation_messages.h"
19 #include "chrome/common/chrome_version_info.h" 19 #include "chrome/common/chrome_version_info.h"
20 #include "chrome/test/automation/browser_proxy.h" 20 #include "chrome/test/automation/browser_proxy.h"
21 #include "chrome/test/automation/extension_proxy.h" 21 #include "chrome/test/automation/extension_proxy.h"
22 #include "chrome/test/automation/tab_proxy.h" 22 #include "chrome/test/automation/tab_proxy.h"
23 #include "chrome/test/automation/window_proxy.h" 23 #include "chrome/test/automation/window_proxy.h"
24 #include "ipc/ipc_descriptors.h" 24 #include "ipc/ipc_descriptors.h"
25 #if defined(OS_WIN) 25 #if defined(OS_WIN)
26 // TODO(port): Enable when dialog_delegate is ported. 26 // TODO(port): Enable when dialog_delegate is ported.
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 password, 540 password,
541 &success)); 541 &success));
542 // If message sending unsuccessful or test failed, return false. 542 // If message sending unsuccessful or test failed, return false.
543 return sent && success; 543 return sent && success;
544 } 544 }
545 #endif 545 #endif
546 546
547 bool AutomationProxy::ResetToDefaultTheme() { 547 bool AutomationProxy::ResetToDefaultTheme() {
548 return Send(new AutomationMsg_ResetToDefaultTheme()); 548 return Send(new AutomationMsg_ResetToDefaultTheme());
549 } 549 }
OLDNEW
« no previous file with comments | « chrome/test/automation/automation_proxy.h ('k') | chrome/test/live_sync/live_sessions_sync_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698