Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Unified Diff: chrome/browser/component_updater/background_downloader_win.cc

Issue 113403006: Update some uses of char16 to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/bookmarks/bookmark_model.cc ('k') | chrome/browser/download/download_query_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/component_updater/background_downloader_win.cc
diff --git a/chrome/browser/component_updater/background_downloader_win.cc b/chrome/browser/component_updater/background_downloader_win.cc
index cb02663b737f14bcb8dd17ee56b1a0d034764a05..66a17960680d18cdf759e243a26bed6b3801cc19 100644
--- a/chrome/browser/component_updater/background_downloader_win.cc
+++ b/chrome/browser/component_updater/background_downloader_win.cc
@@ -96,7 +96,7 @@ namespace {
// All jobs created by this module have a specific description so they can
// be found at run-time or by using system administration tools.
-const char16 kJobDescription[] = L"Chrome Component Updater";
+const base::char16 kJobDescription[] = L"Chrome Component Updater";
// How often the code looks for changes in the BITS job state.
const int kJobPollingIntervalSec = 10;
@@ -167,7 +167,7 @@ HRESULT GetJobFileProperties(IBackgroundCopyFile* file,
HRESULT hr = S_OK;
if (local_name) {
- ScopedCoMem<char16> name;
+ ScopedCoMem<base::char16> name;
hr = file->GetLocalName(&name);
if (FAILED(hr))
return hr;
@@ -175,7 +175,7 @@ HRESULT GetJobFileProperties(IBackgroundCopyFile* file,
}
if (remote_name) {
- ScopedCoMem<char16> name;
+ ScopedCoMem<base::char16> name;
hr = file->GetRemoteName(&name);
if (FAILED(hr))
return hr;
@@ -194,7 +194,7 @@ HRESULT GetJobFileProperties(IBackgroundCopyFile* file,
}
HRESULT GetJobDescription(IBackgroundCopyJob* job, const base::string16* name) {
- ScopedCoMem<char16> description;
+ ScopedCoMem<base::char16> description;
return job->GetDescription(&description);
}
@@ -288,7 +288,7 @@ bool JobFileUrlEqual::operator()(IBackgroundCopyJob* job,
return false;
for (size_t i = 0; i != files.size(); ++i) {
- ScopedCoMem<char16> name;
+ ScopedCoMem<base::char16> name;
if (SUCCEEDED(files[i]->GetRemoteName(&name)) &&
remote_name.compare(name) == 0)
return true;
« no previous file with comments | « chrome/browser/bookmarks/bookmark_model.cc ('k') | chrome/browser/download/download_query_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698