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

Unified Diff: chrome/test/ui/layout_plugin_uitest.cpp

Issue 40226: Fix files with lines > 80 cols. Part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/testing_browser_process.h ('k') | chrome/test/ui/omnibox_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/ui/layout_plugin_uitest.cpp
===================================================================
--- chrome/test/ui/layout_plugin_uitest.cpp (revision 11111)
+++ chrome/test/ui/layout_plugin_uitest.cpp (working copy)
@@ -47,9 +47,12 @@
TEST_F(LayoutPluginTester, UnloadNoCrash) {
// We need to copy our test-plugin into the plugins directory so that
// the browser can load it.
- std::wstring plugins_directory = browser_directory_ + L"\\plugins";
- std::wstring plugin_src = browser_directory_ + L"\\npapi_layout_test_plugin.dll";
- std::wstring plugin_dest = plugins_directory + L"\\npapi_layout_test_plugin.dll";
+ std::wstring plugins_directory = browser_directory_;
+ plugins_directory += L"\\plugins";
+ std::wstring plugin_src = browser_directory_;
+ plugin_src += L"\\npapi_layout_test_plugin.dll";
+ std::wstring plugin_dest = plugins_directory;
+ plugin_dest += L"\\npapi_layout_test_plugin.dll";
CreateDirectory(plugins_directory.c_str(), NULL);
CopyFile(plugin_src.c_str(), plugin_dest.c_str(), true /* overwrite */);
« no previous file with comments | « chrome/test/testing_browser_process.h ('k') | chrome/test/ui/omnibox_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698