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

Side by Side Diff: win8/test/open_with_dialog_controller.cc

Issue 1855123002: remove unneeded scoped_ptr.h inclusions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | win8/test/test_registrar.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/memory/scoped_ptr.h"
14 #include "base/message_loop/message_loop.h" 13 #include "base/message_loop/message_loop.h"
15 #include "base/run_loop.h" 14 #include "base/run_loop.h"
16 #include "base/thread_task_runner_handle.h" 15 #include "base/thread_task_runner_handle.h"
17 #include "base/threading/thread_checker.h" 16 #include "base/threading/thread_checker.h"
18 #include "base/win/windows_version.h" 17 #include "base/win/windows_version.h"
19 #include "win8/test/open_with_dialog_async.h" 18 #include "win8/test/open_with_dialog_async.h"
20 #include "win8/test/ui_automation_client.h" 19 #include "win8/test/ui_automation_client.h"
21 20
22 namespace win8 { 21 namespace win8 {
23 22
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 base::Bind(&OpenWithDialogController::Begin, base::Unretained(this), 283 base::Bind(&OpenWithDialogController::Begin, base::Unretained(this),
285 parent_window, protocol, program, 284 parent_window, protocol, program,
286 Bind(&OnMakeDefaultComplete, run_loop.QuitClosure(), 285 Bind(&OnMakeDefaultComplete, run_loop.QuitClosure(),
287 &result, choices))); 286 &result, choices)));
288 287
289 run_loop.Run(); 288 run_loop.Run();
290 return result; 289 return result;
291 } 290 }
292 291
293 } // namespace win8 292 } // namespace win8
OLDNEW
« no previous file with comments | « no previous file | win8/test/test_registrar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698