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

Side by Side Diff: chrome/browser/ui/cocoa/extensions/extension_install_prompt_test_utils.mm

Issue 486843004: Change base/file_utils.h includes to base/files/file_utils.h in chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad merge Created 6 years, 4 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 #import "chrome/browser/ui/cocoa/extensions/extension_install_prompt_test_utils. h" 5 #import "chrome/browser/ui/cocoa/extensions/extension_install_prompt_test_utils. h"
6 6
7 #include "base/file_util.h"
8 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/files/file_util.h"
9 #include "base/json/json_file_value_serializer.h" 9 #include "base/json/json_file_value_serializer.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
11 #include "chrome/common/chrome_paths.h" 11 #include "chrome/common/chrome_paths.h"
12 #include "extensions/common/extension.h" 12 #include "extensions/common/extension.h"
13 13
14 using extensions::Extension; 14 using extensions::Extension;
15 15
16 namespace chrome { 16 namespace chrome {
17 17
18 void MockExtensionInstallPromptDelegate::InstallUIProceed() { 18 void MockExtensionInstallPromptDelegate::InstallUIProceed() {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 BuildExtensionPostInstallPermissionsPrompt(Extension* extension) { 85 BuildExtensionPostInstallPermissionsPrompt(Extension* extension) {
86 scoped_refptr<ExtensionInstallPrompt::Prompt> prompt = 86 scoped_refptr<ExtensionInstallPrompt::Prompt> prompt =
87 new ExtensionInstallPrompt::Prompt( 87 new ExtensionInstallPrompt::Prompt(
88 ExtensionInstallPrompt::POST_INSTALL_PERMISSIONS_PROMPT); 88 ExtensionInstallPrompt::POST_INSTALL_PERMISSIONS_PROMPT);
89 prompt->set_extension(extension); 89 prompt->set_extension(extension);
90 prompt->set_icon(LoadInstallPromptIcon()); 90 prompt->set_icon(LoadInstallPromptIcon());
91 return prompt; 91 return prompt;
92 } 92 }
93 93
94 } // namespace chrome 94 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698