| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/gtest_prod_util.h" | |
| 14 #include "base/macros.h" | 13 #include "base/macros.h" |
| 15 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 17 #include "content/public/browser/content_browser_client.h" | 16 #include "content/public/browser/content_browser_client.h" |
| 18 | 17 |
| 19 class ChromeContentBrowserClientParts; | 18 class ChromeContentBrowserClientParts; |
| 20 | 19 |
| 21 namespace base { | 20 namespace base { |
| 22 class CommandLine; | 21 class CommandLine; |
| 23 } | 22 } |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 // Vector of additional ChromeContentBrowserClientParts. | 330 // Vector of additional ChromeContentBrowserClientParts. |
| 332 // Parts are deleted in the reverse order they are added. | 331 // Parts are deleted in the reverse order they are added. |
| 333 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 332 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 334 | 333 |
| 335 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 334 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 336 | 335 |
| 337 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 336 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 338 }; | 337 }; |
| 339 | 338 |
| 340 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 339 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |