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

Side by Side Diff: chrome_frame/utils.cc

Issue 3176026: FBTF: Remove unneeded headers from base/ (part 7) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 3 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 | « chrome_frame/urlmon_upload_data_stream.h ('k') | courgette/ensemble.cc » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 <htiframe.h> 5 #include <htiframe.h>
6 #include <mshtml.h> 6 #include <mshtml.h>
7 #include <shlobj.h> 7 #include <shlobj.h>
8 #include <wininet.h> 8 #include <wininet.h>
9 9
10 #include "base/file_util.h" 10 #include "base/file_util.h"
(...skipping 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after
1385 security_manager->MapUrlToZone(unicode_url.c_str(), &zone, 0); 1385 security_manager->MapUrlToZone(unicode_url.c_str(), &zone, 0);
1386 if (zone == URLZONE_UNTRUSTED) { 1386 if (zone == URLZONE_UNTRUSTED) {
1387 DLOG(WARNING) << __FUNCTION__ 1387 DLOG(WARNING) << __FUNCTION__
1388 << " Disallowing navigation to restricted url: " << url; 1388 << " Disallowing navigation to restricted url: " << url;
1389 return false; 1389 return false;
1390 } 1390 }
1391 } 1391 }
1392 1392
1393 return true; 1393 return true;
1394 } 1394 }
1395
OLDNEW
« no previous file with comments | « chrome_frame/urlmon_upload_data_stream.h ('k') | courgette/ensemble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698