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: win8/test/open_with_dialog_controller.cc

Issue 1973453003: Fix include path for moved thread_task_runner_handle.h header in win8/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 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
« no previous file with comments | « win8/test/open_with_dialog_async.cc ('k') | win8/test/ui_automation_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "win8/test/open_with_dialog_controller.h" 5 #include "win8/test/open_with_dialog_controller.h"
6 6
7 #include <shlobj.h> 7 #include <shlobj.h>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/message_loop/message_loop.h" 13 #include "base/message_loop/message_loop.h"
14 #include "base/run_loop.h" 14 #include "base/run_loop.h"
15 #include "base/thread_task_runner_handle.h"
16 #include "base/threading/thread_checker.h" 15 #include "base/threading/thread_checker.h"
16 #include "base/threading/thread_task_runner_handle.h"
17 #include "base/win/windows_version.h" 17 #include "base/win/windows_version.h"
18 #include "win8/test/open_with_dialog_async.h" 18 #include "win8/test/open_with_dialog_async.h"
19 #include "win8/test/ui_automation_client.h" 19 #include "win8/test/ui_automation_client.h"
20 20
21 namespace win8 { 21 namespace win8 {
22 22
23 namespace { 23 namespace {
24 24
25 const int kControllerTimeoutSeconds = 5; 25 const int kControllerTimeoutSeconds = 5;
26 const wchar_t kShellFlyoutClassName[] = L"Shell_Flyout"; 26 const wchar_t kShellFlyoutClassName[] = L"Shell_Flyout";
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 base::Bind(&OpenWithDialogController::Begin, base::Unretained(this), 283 base::Bind(&OpenWithDialogController::Begin, base::Unretained(this),
284 parent_window, protocol, program, 284 parent_window, protocol, program,
285 Bind(&OnMakeDefaultComplete, run_loop.QuitClosure(), 285 Bind(&OnMakeDefaultComplete, run_loop.QuitClosure(),
286 &result, choices))); 286 &result, choices)));
287 287
288 run_loop.Run(); 288 run_loop.Run();
289 return result; 289 return result;
290 } 290 }
291 291
292 } // namespace win8 292 } // namespace win8
OLDNEW
« no previous file with comments | « win8/test/open_with_dialog_async.cc ('k') | win8/test/ui_automation_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698