Searched refs:store_birthday (Results 1 - 10 of 10) sorted by relevance

/external/chromium/chrome/browser/sync/engine/
H A Dclear_data_command_unittest.cc72 dir->set_store_birthday(mock_server()->store_birthday());
108 dir->set_store_birthday(mock_server()->store_birthday());
H A Dsyncer_proto_util_unittest.cc148 EXPECT_TRUE(lookup->store_birthday().empty());
155 EXPECT_EQ(lookup->store_birthday(), "flan");
160 EXPECT_EQ(lookup->store_birthday(), "flan");
174 EXPECT_TRUE(lookup->store_birthday().empty());
181 EXPECT_EQ(msg.store_birthday(), "meat");
H A Dsyncer_proto_util.cc100 std::string local_birthday = dir->store_birthday();
114 VLOG(1) << "New store birthday: " << response->store_birthday();
115 dir->set_store_birthday(response->store_birthday());
125 if (response->store_birthday() != local_birthday) {
136 if (!dir->store_birthday().empty())
137 msg->set_store_birthday(dir->store_birthday());
H A Dsyncer_unittest.cc1787 dir->set_store_birthday(mock_server_->store_birthday());
/external/chromium/net/tools/testserver/
H A Dchromiumsync.py281 self.store_birthday = '%0.30f' % random.random()
746 response.store_birthday = self.account.store_birthday
/external/chromium/chrome/browser/sync/engine/net/
H A Dserver_connection_manager.cc355 string birthday = dir->store_birthday();
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable.h703 std::string store_birthday; member in struct:syncable::Directory::PersistedKernelInfo
787 std::string store_birthday() const;
788 void set_store_birthday(const std::string& store_birthday);
H A Dsyncable.cc875 string Directory::store_birthday() const { function in class:syncable::Directory
877 return kernel_->persisted_info.store_birthday;
880 void Directory::set_store_birthday(const string& store_birthday) { argument
882 if (kernel_->persisted_info.store_birthday == store_birthday)
884 kernel_->persisted_info.store_birthday = store_birthday;
H A Ddirectory_backing_store.cc380 "SET store_birthday = ?, "
391 update.bind_string(0, info.store_birthday);
585 "SELECT store_birthday, next_id, cache_guid, "
594 info->kernel_info.store_birthday = query.column_string(0);
943 "INSERT INTO temp_share_info (id, name, store_birthday, "
945 "SELECT id, name, store_birthday, db_create_version, "
1110 "?, " // store_birthday
1126 statement.bind_string(2, ""); // store_birthday
1214 "store_birthday TEXT, "
1239 "store_birthday TEX
[all...]
H A Dsyncable_unittest.cc1058 EXPECT_EQ("Jan 31st", dir_->store_birthday());
1069 EXPECT_EQ("April 10th", dir_->store_birthday());
1080 EXPECT_EQ("April 10th", dir_->store_birthday());

Completed in 109 milliseconds