Skip to content
Snippets Groups Projects
Commit a78a0948 authored by Kathleen Brade's avatar Kathleen Brade
Browse files

Fixup! Bug #9701: Prevent ClipBoardCache from writing to disk.

Update the DataStruct::SetData() prototype (my clang-based Mac build failed).
parent 453b4ee4
No related merge requests found
......@@ -27,7 +27,7 @@ struct DataStruct
~DataStruct();
const nsCString& GetFlavor() const { return mFlavor; }
void SetData( nsISupports* inData, uint32_t inDataLen );
void SetData( nsISupports* inData, uint32_t inDataLen, bool aIsPrivBrowsing );
void GetData( nsISupports** outData, uint32_t *outDataLen );
already_AddRefed<nsIFile> GetFileSpec(const char* aFileName);
bool IsDataAvailable() const { return (mData && mDataLen > 0) || (!mData && mCacheFileName); }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment