| 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/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "chrome/common/chrome_version_info.h" | 17 #include "chrome/common/channel_info.h" |
| 18 #include "content/public/browser/content_browser_client.h" | 18 #include "content/public/browser/content_browser_client.h" |
| 19 | 19 |
| 20 class ChromeContentBrowserClientParts; | 20 class ChromeContentBrowserClientParts; |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class CommandLine; | 23 class CommandLine; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace content { | 26 namespace content { |
| 27 class QuotaPermissionContext; | 27 class QuotaPermissionContext; |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 326 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 327 | 327 |
| 328 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 328 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 329 | 329 |
| 330 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 330 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 331 }; | 331 }; |
| 332 | 332 |
| 333 } // namespace chrome | 333 } // namespace chrome |
| 334 | 334 |
| 335 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 335 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |