Chromium Code Reviews| 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/public/common/content_client.h" | 5 #include "content/public/common/content_client.h" |
| 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 #include "webkit/plugins/ppapi/host_globals.h" | 10 #include "webkit/plugins/ppapi/host_globals.h" |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 | 13 |
| 14 static ContentClient* g_client; | 14 static ContentClient* g_client; |
| 15 | 15 |
| 16 void SetContentClient(ContentClient* client) { | 16 void SetContentClient(ContentClient* client) { |
| 17 g_client = client; | 17 g_client = client; |
| 18 | 18 |
| 19 // TODO(dpranke): Doing real work (calling webkit_glue::SetUserAgent) | 19 // Set the default user agent as provided by the client. |
|
jam
2012/04/06 23:13:52
nit: please keep the "we need to make sure this is
scherkus (not reviewing)
2012/04/06 23:59:41
Done.
| |
| 20 // inside what looks like a function that initializes a global is a | |
| 21 // bit odd, but we need to make sure this is done before | |
| 22 // webkit_glue::GetUserAgent() is called (so that the UA doesn't change). | |
| 23 // | |
| 24 // It would be cleaner if we could rename this to something like a | |
| 25 // content::Initialize(). Maybe we can merge this into ContentMain() somehow? | |
| 26 if (client) { | 20 if (client) { |
| 27 bool custom = false; | 21 webkit_glue::SetUserAgent(client->GetUserAgent(), false); |
| 28 std::string ua = client->GetUserAgent(&custom); | |
| 29 webkit_glue::SetUserAgent(ua, custom); | |
| 30 } | 22 } |
| 31 } | 23 } |
| 32 | 24 |
| 33 ContentClient* GetContentClient() { | 25 ContentClient* GetContentClient() { |
| 34 return g_client; | 26 return g_client; |
| 35 } | 27 } |
| 36 | 28 |
| 37 const std::string& GetUserAgent(const GURL& url) { | 29 const std::string& GetUserAgent(const GURL& url) { |
| 38 DCHECK(g_client); | 30 DCHECK(g_client); |
| 39 return webkit_glue::GetUserAgent(url); | 31 return webkit_glue::GetUserAgent(url); |
| 40 } | 32 } |
| 41 | 33 |
| 42 webkit::ppapi::HostGlobals* GetHostGlobals() { | 34 webkit::ppapi::HostGlobals* GetHostGlobals() { |
| 43 return webkit::ppapi::HostGlobals::Get(); | 35 return webkit::ppapi::HostGlobals::Get(); |
| 44 } | 36 } |
| 45 | 37 |
| 46 ContentClient::ContentClient() | 38 ContentClient::ContentClient() |
| 47 : browser_(NULL), plugin_(NULL), renderer_(NULL), utility_(NULL) { | 39 : browser_(NULL), plugin_(NULL), renderer_(NULL), utility_(NULL) { |
| 48 } | 40 } |
| 49 | 41 |
| 50 ContentClient::~ContentClient() { | 42 ContentClient::~ContentClient() { |
| 51 } | 43 } |
| 52 | 44 |
| 53 } // namespace content | 45 } // namespace content |
| OLD | NEW |