Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(507)

Unified Diff: ppapi/examples/ime/ime.html

Issue 8728023: (Cleanup) Use its own MIME type in the PPAPI IME example. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wrapped >80 letter lines. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/examples/ime/ime.html
diff --git a/ppapi/examples/ime/ime.html b/ppapi/examples/ime/ime.html
index a9f056c981fb242319fcfdf8651619c91bc99582..689a63ea949e20ac538f03d006dfedab1d278d28 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>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698