| Index: components/translate/content/browser/static_browser_cld_data_provider.cc
|
| diff --git a/components/translate/content/browser/static_browser_cld_data_provider.cc b/components/translate/content/browser/static_browser_cld_data_provider.cc
|
| index b12bff18ff8f2a4dea67698ffc56aed7408f9039..a5d8a79e63af09e27f9b28a220e2a6c83c49db99 100644
|
| --- a/components/translate/content/browser/static_browser_cld_data_provider.cc
|
| +++ b/components/translate/content/browser/static_browser_cld_data_provider.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "static_browser_cld_data_provider.h"
|
|
|
| +#include "base/logging.h"
|
| #include "content/public/browser/web_contents.h"
|
| #include "ipc/ipc_message.h"
|
|
|
| @@ -13,6 +14,9 @@ namespace translate {
|
| // hooking up this specific implementation for all of Chromium.
|
| BrowserCldDataProvider* CreateBrowserCldDataProviderFor(
|
| content::WebContents* web_contents) {
|
| + // This log line is to help with determining which kind of provider has been
|
| + // configured. See also: chrome://translate-internals
|
| + VLOG(1) << "Creating StaticBrowserCldDataProvider";
|
| return new StaticBrowserCldDataProvider();
|
| }
|
|
|
|
|