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

Side by Side Diff: chrome/browser/net/dns_master.cc

Issue 20378: Reduce the amount of included header files. Vast change like in "Oh God! This... (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // See header file for description of class 5 // See header file for description of class
6 6
7 #include "chrome/browser/net/dns_master.h" 7 #include "chrome/browser/net/dns_master.h"
8 8
9 #include <sstream> 9 #include <set>
10 10
11 #include "base/histogram.h" 11 #include "base/histogram.h"
12 #include "base/stats_counters.h" 12 #include "base/stats_counters.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "base/thread.h" 14 #include "base/thread.h"
15 #include "base/win_util.h" 15 #include "base/win_util.h"
16 #include "chrome/browser/net/dns_slave.h" 16 #include "chrome/browser/net/dns_slave.h"
17 17
18 using base::TimeDelta; 18 using base::TimeDelta;
19 19
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 if (!motivating_host->Get(1, &subresource_list)) 578 if (!motivating_host->Get(1, &subresource_list))
579 continue; 579 continue;
580 if (motivating_referrer.empty()) 580 if (motivating_referrer.empty())
581 continue; 581 continue;
582 referrers_[motivating_referrer].Deserialize(*subresource_list); 582 referrers_[motivating_referrer].Deserialize(*subresource_list);
583 } 583 }
584 } 584 }
585 585
586 } // namespace chrome_browser_net 586 } // namespace chrome_browser_net
587 587
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698