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

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

Issue 13779002: chromeos: Add a subdirectory "file_manager" to chrome/browser/chromeos/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 #include "chrome/browser/chromeos/extensions/file_manager_util.h" 4 #include "chrome/browser/chromeos/extensions/file_manager/file_manager_util.h"
5 5
6 #include "ash/shell.h" 6 #include "ash/shell.h"
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/json/json_reader.h" 10 #include "base/json/json_reader.h"
11 #include "base/json/json_writer.h" 11 #include "base/json/json_writer.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/metrics/histogram.h" 13 #include "base/metrics/histogram.h"
14 #include "base/path_service.h" 14 #include "base/path_service.h"
(...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after
1005 for (google_apis::OperationProgressStatusList::const_iterator iter = 1005 for (google_apis::OperationProgressStatusList::const_iterator iter =
1006 list.begin(); 1006 list.begin();
1007 iter != list.end(); ++iter) { 1007 iter != list.end(); ++iter) {
1008 result_list->Append( 1008 result_list->Append(
1009 ProgessStatusToDictionaryValue(profile, extension_id, *iter)); 1009 ProgessStatusToDictionaryValue(profile, extension_id, *iter));
1010 } 1010 }
1011 return result_list.release(); 1011 return result_list.release();
1012 } 1012 }
1013 1013
1014 } // namespace file_manager_util 1014 } // namespace file_manager_util
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698