OLD | NEW |
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 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1363 if (!allow_gcf_protocol) { | 1363 if (!allow_gcf_protocol) { |
1364 DLOG(WARNING) << __FUNCTION__ | 1364 DLOG(WARNING) << __FUNCTION__ |
1365 << " Disallowing navigation to gcf url: " | 1365 << " Disallowing navigation to gcf url: " |
1366 << cf_url.url(); | 1366 << cf_url.url(); |
1367 return false; | 1367 return false; |
1368 } | 1368 } |
1369 } | 1369 } |
1370 | 1370 |
1371 return true; | 1371 return true; |
1372 } | 1372 } |
| 1373 |
OLD | NEW |