diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-04 08:31:54 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-04 08:31:54 +0000 |
commit | 7e8ce782616e32a9ae06537b5b89caf75e3c965a (patch) | |
tree | 4c1348b6ca99eca4b96a167bb17b618f1a5da042 /ppapi/thunk | |
parent | dc0d0fb5cb442fa3daa9dc524587f86e76ca677a (diff) | |
download | chromium_src-7e8ce782616e32a9ae06537b5b89caf75e3c965a.zip chromium_src-7e8ce782616e32a9ae06537b5b89caf75e3c965a.tar.gz chromium_src-7e8ce782616e32a9ae06537b5b89caf75e3c965a.tar.bz2 |
PPAPI: Convert FileIO tests to new style & test background threads
BUG=92909
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=172261
Review URL: https://chromiumcodereview.appspot.com/11421137
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192237 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/thunk')
-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 965e0f1..02151eb 100644 --- a/ppapi/thunk/enter.cc +++ b/ppapi/thunk/enter.cc @@ -155,8 +155,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); |