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

Unified Diff: chrome/browser/chromeos/gdata/gdata_operations_unittest.cc

Issue 10837338: Remove "GData" prefix from non-GData specific classes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase. Created 8 years, 4 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
Index: chrome/browser/chromeos/gdata/gdata_operations_unittest.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_operations_unittest.cc b/chrome/browser/chromeos/gdata/gdata_operations_unittest.cc
index d1278e9438f7cc7a30335d6b9284784e2f4b1ffe..e753e4839d2d59d1d06d6fe52b0682c8a7222a23 100644
--- a/chrome/browser/chromeos/gdata/gdata_operations_unittest.cc
+++ b/chrome/browser/chromeos/gdata/gdata_operations_unittest.cc
@@ -6,8 +6,8 @@
#include "base/message_loop.h"
#include "base/values.h"
#include "chrome/browser/chromeos/gdata/gdata_operations.h"
-#include "chrome/browser/chromeos/gdata/gdata_operation_runner.h"
#include "chrome/browser/chromeos/gdata/gdata_test_util.h"
+#include "chrome/browser/chromeos/gdata/operation_runner.h"
#include "chrome/test/base/testing_profile.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/test/test_browser_thread.h"
@@ -19,7 +19,7 @@ namespace {
class JsonParseTestGetDataOperation : public GetDataOperation {
public:
- JsonParseTestGetDataOperation(GDataOperationRegistry* registry,
+ JsonParseTestGetDataOperation(OperationRegistry* registry,
const GetDataCallback& callback)
: GetDataOperation(registry, callback) {
}
@@ -36,7 +36,7 @@ class JsonParseTestGetDataOperation : public GetDataOperation {
}
void NotifyFailure() {
- NotifyFinish(GDataOperationRegistry::OPERATION_FAILED);
+ NotifyFinish(OperationRegistry::OPERATION_FAILED);
}
protected:
@@ -67,7 +67,7 @@ class GDataOperationsTest : public testing::Test {
virtual void SetUp() OVERRIDE {
profile_.reset(new TestingProfile);
- runner_.reset(new GDataOperationRunner(profile_.get()));
+ runner_.reset(new OperationRunner(profile_.get()));
runner_->Initialize();
}
@@ -75,7 +75,7 @@ class GDataOperationsTest : public testing::Test {
MessageLoopForUI message_loop_;
content::TestBrowserThread ui_thread_;
scoped_ptr<TestingProfile> profile_;
- scoped_ptr<GDataOperationRunner> runner_;
+ scoped_ptr<OperationRunner> runner_;
};
TEST_F(GDataOperationsTest, GetDataOperationParseJson) {
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_operations.cc ('k') | chrome/browser/chromeos/gdata/gdata_protocol_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698