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

Side by Side Diff: chrome/browser/chromeos/extensions/file_manager/file_handler_util.cc

Issue 13929003: chromeos: Move chrome/browser/chromeos/extensions/file_handler_util.* to a sub-directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browser/chromeos/extensions/file_handler_util.h" 5 #include "chrome/browser/chromeos/extensions/file_manager/file_handler_util.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/i18n/case_conversion.h" 9 #include "base/i18n/case_conversion.h"
10 #include "base/json/json_writer.h" 10 #include "base/json/json_writer.h"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "base/stringprintf.h" 12 #include "base/stringprintf.h"
13 #include "base/utf_string_conversions.h" 13 #include "base/utf_string_conversions.h"
14 #include "chrome/browser/chromeos/drive/drive_file_system_util.h" 14 #include "chrome/browser/chromeos/drive/drive_file_system_util.h"
15 #include "chrome/browser/chromeos/drive/drive_task_executor.h" 15 #include "chrome/browser/chromeos/drive/drive_task_executor.h"
(...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after
1006 extensions::LaunchPlatformAppWithFileHandler(profile(), GetExtension(), 1006 extensions::LaunchPlatformAppWithFileHandler(profile(), GetExtension(),
1007 action_id_, file_urls[i].path()); 1007 action_id_, file_urls[i].path());
1008 } 1008 }
1009 1009
1010 if (!done.is_null()) 1010 if (!done.is_null())
1011 done.Run(true); 1011 done.Run(true);
1012 return true; 1012 return true;
1013 } 1013 }
1014 1014
1015 } // namespace file_handler_util 1015 } // namespace file_handler_util
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698