HomeSort by relevance Sort by last modified time
    Searched refs:current_session_file_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/sessions/
session_backend.cc 227 // Make sure and check current_session_file_, if opening the file failed
228 // current_session_file_ will be NULL.
229 if ((reset_first && !empty_file_) || !current_session_file_.get() ||
230 !current_session_file_->IsValid()) {
233 // Need to check current_session_file_ again, ResetFile may fail.
234 if (current_session_file_.get() && current_session_file_->IsValid() &&
235 !AppendCommandsToFile(current_session_file_.get(), *commands)) {
236 current_session_file_.reset(NULL);
270 current_session_file_.reset(NULL)
    [all...]
session_backend.h 98 // If current_session_file_ is open, it is truncated so that it is essentially
99 // empty (only contains the header). If current_session_file_ isn't open, it
101 // current_session_file_ contains no commands.
102 // NOTE: current_session_file_ may be NULL if the file couldn't be opened or
129 scoped_ptr<base::File> current_session_file_; member in class:SessionBackend

Completed in 1693 milliseconds