OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:invalid_store
(Results
1 - 6
of
6
) sorted by null
/external/chromium/chrome/browser/sync/sessions/
status_controller.cc
96
void StatusController::set_invalid_store(bool
invalid_store
) {
97
if (shared_.syncer_status.value().
invalid_store
!=
invalid_store
)
98
shared_.syncer_status.mutate()->
invalid_store
=
invalid_store
;
session_state_unittest.cc
46
status.
invalid_store
= true;
56
ExpectBooleanValue(status.
invalid_store
, *value, "invalidStore");
status_controller_unittest.cc
130
EXPECT_FALSE(status.syncer_status().
invalid_store
);
132
EXPECT_TRUE(status.syncer_status().
invalid_store
);
status_controller.h
207
void set_invalid_store(bool
invalid_store
);
session_state.cc
46
:
invalid_store
(false),
60
value->SetBoolean("invalidStore",
invalid_store
);
session_state.h
67
// True when we get such an
INVALID_STORE
error from the server.
68
bool
invalid_store
;
member in struct:browser_sync::sessions::SyncerStatus
Completed in 81 milliseconds