diff options
author | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-27 23:30:41 +0000 |
---|---|---|
committer | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-27 23:30:41 +0000 |
commit | 234c139a2b9e49ebc4fa568de69c1a5c8248538b (patch) | |
tree | 7f2bbff8a839ac6f7e82c849d146928ea9cd6303 /ppapi/host | |
parent | 8a6702b4c40143058d6750e198641a7e172db611 (diff) | |
download | chromium_src-234c139a2b9e49ebc4fa568de69c1a5c8248538b.zip chromium_src-234c139a2b9e49ebc4fa568de69c1a5c8248538b.tar.gz chromium_src-234c139a2b9e49ebc4fa568de69c1a5c8248538b.tar.bz2 |
Implement browser side of PPB_Printing resource.
This adds the browser side implementation of PPB_Printing as well as a unittest for PepperPrintingHost and a PPAPI browser_test for PPB_Printing::GetDefaultPrintSettings.
BUG=138333
TEST=content_unittests/browser_tests
Review URL: https://chromiumcodereview.appspot.com/10826072
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159150 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/host')
-rw-r--r-- | ppapi/host/dispatch_host_message.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/host/dispatch_host_message.h b/ppapi/host/dispatch_host_message.h index b01a0ed..f891851 100644 --- a/ppapi/host/dispatch_host_message.h +++ b/ppapi/host/dispatch_host_message.h @@ -63,7 +63,7 @@ inline int32_t DispatchResourceCall(ObjT* obj, Method method, // Note that this only works for message with 1 or more parameters. For // 0-parameter messages you need to use the _0 version below (since there are -// no Params in the message). +// no params in the message). #define PPAPI_DISPATCH_HOST_RESOURCE_CALL(msg_class, member_func) \ case msg_class::ID: { \ TRACK_RUN_IN_IPC_HANDLER(member_func); \ |