OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 "config.h" | |
6 | |
7 #include "cc/prioritized_resource_manager.h" | 5 #include "cc/prioritized_resource_manager.h" |
8 | 6 |
9 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
10 #include "base/stl_util.h" | 8 #include "base/stl_util.h" |
11 #include "cc/prioritized_resource.h" | 9 #include "cc/prioritized_resource.h" |
12 #include "cc/priority_calculator.h" | 10 #include "cc/priority_calculator.h" |
13 #include "cc/proxy.h" | 11 #include "cc/proxy.h" |
14 #include <algorithm> | 12 #include <algorithm> |
15 | 13 |
16 using namespace std; | 14 using namespace std; |
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 } | 470 } |
473 #endif | 471 #endif |
474 } | 472 } |
475 | 473 |
476 const Proxy* PrioritizedResourceManager::proxyForDebug() const | 474 const Proxy* PrioritizedResourceManager::proxyForDebug() const |
477 { | 475 { |
478 return m_proxy; | 476 return m_proxy; |
479 } | 477 } |
480 | 478 |
481 } // namespace cc | 479 } // namespace cc |
OLD | NEW |