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

Unified Diff: third_party/leveldatabase/env_chromium.h

Issue 800783003: LevelDB: Removed global prefix from base namespace: "::base" -> "base" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some git cl format changes. Created 6 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 | « third_party/leveldatabase/chromium_logger.h ('k') | third_party/leveldatabase/env_chromium.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/leveldatabase/env_chromium.h
diff --git a/third_party/leveldatabase/env_chromium.h b/third_party/leveldatabase/env_chromium.h
index 807fbd014dd1e280021a49c5a8b00af583ff9597..543a4fdceeb40ef055e2bd38c16c536766c74874 100644
--- a/third_party/leveldatabase/env_chromium.h
+++ b/third_party/leveldatabase/env_chromium.h
@@ -139,7 +139,7 @@ class ChromiumEnv : public leveldb::Env,
bool make_backup_;
private:
- static const char* FileErrorString(::base::File::Error error);
+ static const char* FileErrorString(base::File::Error error);
virtual void DidCreateNewFile(const std::string& fname);
virtual bool DoesDirNeedSync(const std::string& fname);
@@ -193,8 +193,8 @@ class ChromiumEnv : public leveldb::Env,
base::FilePath test_directory_;
- ::base::Lock mu_;
- ::base::ConditionVariable bgsignal_;
+ base::Lock mu_;
+ base::ConditionVariable bgsignal_;
bool started_bgthread_;
// Entry per Schedule() call
« no previous file with comments | « third_party/leveldatabase/chromium_logger.h ('k') | third_party/leveldatabase/env_chromium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698