diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-11 04:29:20 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-11 04:29:20 +0000 |
commit | b469dedec774fcbaf0fbc1db0db607c0fe202f7c (patch) | |
tree | e8f78262a4bf748bbd7034f261ab981f69c45eea /ppapi/thunk/enter.cc | |
parent | 792b9b17fc2a2399062ff801ad4fc9814ad5f133 (diff) | |
download | chromium_src-b469dedec774fcbaf0fbc1db0db607c0fe202f7c.zip chromium_src-b469dedec774fcbaf0fbc1db0db607c0fe202f7c.tar.gz chromium_src-b469dedec774fcbaf0fbc1db0db607c0fe202f7c.tar.bz2 |
PPAPI: Convert FileIO tests to new style & test background threads
BUG=92909
Review URL: https://chromiumcodereview.appspot.com/11421137
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172261 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/thunk/enter.cc')
-rw-r--r-- | ppapi/thunk/enter.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/thunk/enter.cc b/ppapi/thunk/enter.cc index 296a8b4..030b945 100644 --- a/ppapi/thunk/enter.cc +++ b/ppapi/thunk/enter.cc @@ -133,8 +133,8 @@ void EnterBase::SetStateForCallbackError(bool report_error) { // the plugin won't expect any return code other than // PP_OK_COMPLETIONPENDING. So we crash to make the problem more obvious. if (callback_->is_required()) { - std::string message("Attempted to use a required callback, but there" - "is no attached message loop on which to run the" + std::string message("Attempted to use a required callback, but there " + "is no attached message loop on which to run the " "callback."); PpapiGlobals::Get()->BroadcastLogWithSource(0, PP_LOGLEVEL_ERROR, std::string(), message); |