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

Side by Side Diff: chrome/browser/extensions/extension_file_util.cc

Issue 274040: More style nits. (Closed)
Patch Set: Created 11 years, 2 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/extensions/extension_file_util.h" 5 #include "chrome/browser/extensions/extension_file_util.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/scoped_temp_dir.h" 10 #include "base/scoped_temp_dir.h"
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 "Cannot load extension with file or directory name %s. " 395 "Cannot load extension with file or directory name %s. "
396 "Filenames starting with \"_\" are reserved for use by the system.", 396 "Filenames starting with \"_\" are reserved for use by the system.",
397 filename.c_str()); 397 filename.c_str());
398 return false; 398 return false;
399 } 399 }
400 } 400 }
401 401
402 return true; 402 return true;
403 } 403 }
404 404
405 } // extension_file_util 405 } // namespace extension_file_util
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698