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

Side by Side Diff: net/url_request/url_request_unittest.cc

Issue 6805019: Move crypto files out of base, to a top level directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fixes comments by eroman Created 9 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
« no previous file with comments | « net/third_party/mozilla_security_manager/nsPKCS12Blob.cpp ('k') | remoting/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "build/build_config.h" 5 #include "build/build_config.h"
6 6
7 #if defined(OS_WIN) 7 #if defined(OS_WIN)
8 #include <shlobj.h> 8 #include <shlobj.h>
9 #include <windows.h> 9 #include <windows.h>
10 #elif defined(USE_NSS)
11 #include "base/nss_util.h"
12 #endif 10 #endif
13 11
14 #include <algorithm> 12 #include <algorithm>
15 #include <string> 13 #include <string>
16 14
17 #include "base/file_util.h" 15 #include "base/file_util.h"
18 #include "base/format_macros.h" 16 #include "base/format_macros.h"
19 #include "base/message_loop.h" 17 #include "base/message_loop.h"
20 #include "base/path_service.h" 18 #include "base/path_service.h"
21 #include "base/process_util.h" 19 #include "base/process_util.h"
(...skipping 2747 matching lines...) Expand 10 before | Expand all | Expand 10 after
2769 req.SetExtraRequestHeaders(headers); 2767 req.SetExtraRequestHeaders(headers);
2770 req.Start(); 2768 req.Start();
2771 MessageLoop::current()->Run(); 2769 MessageLoop::current()->Run();
2772 // If the net tests are being run with ChromeFrame then we need to allow for 2770 // If the net tests are being run with ChromeFrame then we need to allow for
2773 // the 'chromeframe' suffix which is added to the user agent before the 2771 // the 'chromeframe' suffix which is added to the user agent before the
2774 // closing parentheses. 2772 // closing parentheses.
2775 EXPECT_TRUE(StartsWithASCII(d.data_received(), "Lynx (textmode", true)); 2773 EXPECT_TRUE(StartsWithASCII(d.data_received(), "Lynx (textmode", true));
2776 } 2774 }
2777 2775
2778 } // namespace net 2776 } // namespace net
OLDNEW
« no previous file with comments | « net/third_party/mozilla_security_manager/nsPKCS12Blob.cpp ('k') | remoting/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698