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

Unified Diff: sync/internal_api/base_transaction.cc

Issue 10795018: [Sync] Remove unneeded 'using syncer::' lines and 'syncer::' scopings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fiix indent Created 8 years, 5 months 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 | « sync/internal_api/base_node.cc ('k') | sync/internal_api/change_record.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/base_transaction.cc
diff --git a/sync/internal_api/base_transaction.cc b/sync/internal_api/base_transaction.cc
index 94a78c117c8a06807c123c5b1450017f75750c79..61c1f483f479e0d27f37a866da69beb298c85be8 100644
--- a/sync/internal_api/base_transaction.cc
+++ b/sync/internal_api/base_transaction.cc
@@ -7,8 +7,6 @@
#include "sync/syncable/directory.h"
#include "sync/util/cryptographer.h"
-using syncer::Cryptographer;
-
namespace syncer {
//////////////////////////////////////////////////////////////////////////
@@ -20,11 +18,11 @@ BaseTransaction::BaseTransaction(UserShare* share) {
BaseTransaction::~BaseTransaction() {
}
-syncer::Cryptographer* BaseTransaction::GetCryptographer() const {
+Cryptographer* BaseTransaction::GetCryptographer() const {
return directory_->GetCryptographer(this->GetWrappedTrans());
}
-syncer::ModelTypeSet GetEncryptedTypes(const syncer::BaseTransaction* trans) {
+ModelTypeSet GetEncryptedTypes(const BaseTransaction* trans) {
return trans->GetCryptographer()->GetEncryptedTypes();
}
« no previous file with comments | « sync/internal_api/base_node.cc ('k') | sync/internal_api/change_record.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698