diff options
author | kinaba@chromium.org <kinaba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-14 06:03:13 +0000 |
---|---|---|
committer | kinaba@chromium.org <kinaba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-14 06:03:13 +0000 |
commit | 455143ab4be9fa7981a2ed9c982f051ced78d057 (patch) | |
tree | 5f719f2ee616f201c4b2448d76c624899bced5b3 /ppapi/examples | |
parent | 8ffc2594e4d449f4a8861cee3071c4afbacd9f20 (diff) | |
download | chromium_src-455143ab4be9fa7981a2ed9c982f051ced78d057.zip chromium_src-455143ab4be9fa7981a2ed9c982f051ced78d057.tar.gz chromium_src-455143ab4be9fa7981a2ed9c982f051ced78d057.tar.bz2 |
(Cleanup) Use its own MIME type in the PPAPI IME example.
As other examples do, use own MIME type instead of application/x-ppapi-example.
BUG=none
TEST=make ppapi_example_ime, and verify the following command loads the example.
chrome \
--register-ppapi-plugins="/path/to/libppapi_example_ime.so;application/x-ppapi-example-ime" \
file:///path/to/ppapi/examples/ime.html
Review URL: http://codereview.chromium.org/8728023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114371 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/examples')
-rw-r--r-- | ppapi/examples/ime/ime.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ppapi/examples/ime/ime.html b/ppapi/examples/ime/ime.html index a9f056c..689a63e 100644 --- a/ppapi/examples/ime/ime.html +++ b/ppapi/examples/ime/ime.html @@ -10,20 +10,20 @@ </head> <body style="background-color:#eef"> <p>Full IME Support</p> - <object id="plugin1" type="application/x-ppapi-example" width="400" height="150" - border="2px"><param name="ime" value="full" /></object> + <object id="plugin1" type="application/x-ppapi-example-ime" width="400" + height="150" border="2px"><param name="ime" value="full" /></object> <p>CaretMoveOnly</p> - <object id="plugin2" type="application/x-ppapi-example" width="400" height="150" - border="2px"><param name="ime" value="caretmove" /></object> + <object id="plugin2" type="application/x-ppapi-example-ime" width="400" + height="150" border="2px"><param name="ime" value="caretmove" /></object> <p>IME-Unaware</p> - <object id="plugin3" type="application/x-ppapi-example" width="400" height="150" - border="2px"><param name="ime" value="unaware" /></object> + <object id="plugin3" type="application/x-ppapi-example-ime" width="400" + height="150" border="2px"><param name="ime" value="unaware" /></object> <p>No IME (explicitly turn IME off)</p> - <object id="plugin4" type="application/x-ppapi-example" width="400" height="150" - border="2px"><param name="ime" value="no" /></object> + <object id="plugin4" type="application/x-ppapi-example-ime" width="400" + height="150" border="2px"><param name="ime" value="no" /></object> <p>HTML Textarea</p> <textarea width="200" height="3"></textarea> |