OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "content/common/content_client.h" | 5 #include "content/public/public/common/content_client.h" |
Dirk Pranke
2011/10/18 01:00:38
content/public/public?
Also, since there's real l
| |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/string_piece.h" | 8 #include "base/string_piece.h" |
9 #include "webkit/glue/webkit_glue.h" | 9 #include "webkit/glue/webkit_glue.h" |
10 | 10 |
11 namespace content { | 11 namespace content { |
12 | 12 |
13 static ContentClient* g_client; | 13 static ContentClient* g_client; |
14 | 14 |
15 void SetContentClient(ContentClient* client) { | 15 void SetContentClient(ContentClient* client) { |
(...skipping 23 matching lines...) Expand all Loading... | |
39 } | 39 } |
40 | 40 |
41 ContentClient::ContentClient() | 41 ContentClient::ContentClient() |
42 : browser_(NULL), plugin_(NULL), renderer_(NULL), utility_(NULL) { | 42 : browser_(NULL), plugin_(NULL), renderer_(NULL), utility_(NULL) { |
43 } | 43 } |
44 | 44 |
45 ContentClient::~ContentClient() { | 45 ContentClient::~ContentClient() { |
46 } | 46 } |
47 | 47 |
48 } // namespace content | 48 } // namespace content |
OLD | NEW |