summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/topics/fundamentals
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2011-02-15 16:25:52 -0800
committerScott Main <smain@google.com>2011-02-16 11:55:10 -0800
commit7fbeaf928668058d26f59de211239842d434fb9f (patch)
tree50127379f211260ddab08d78e85a87a743350032 /docs/html/guide/topics/fundamentals
parent874ae43ce1c7fc1fe6c1423b581757fe14edce6e (diff)
downloadframeworks_base-7fbeaf928668058d26f59de211239842d434fb9f.zip
frameworks_base-7fbeaf928668058d26f59de211239842d434fb9f.tar.gz
frameworks_base-7fbeaf928668058d26f59de211239842d434fb9f.tar.bz2
docs: move new AIDL doc back into the existing doc, but move the side nav location out of tools
Change-Id: I6021cd0eb9d37a004036249305819a352efa4f92
Diffstat (limited to 'docs/html/guide/topics/fundamentals')
-rw-r--r--docs/html/guide/topics/fundamentals/bound-services.jd4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/guide/topics/fundamentals/bound-services.jd b/docs/html/guide/topics/fundamentals/bound-services.jd
index e5d626c..ec7d723 100644
--- a/docs/html/guide/topics/fundamentals/bound-services.jd
+++ b/docs/html/guide/topics/fundamentals/bound-services.jd
@@ -170,7 +170,7 @@ can then extend within your service.</p>
create a bound service, because it may require multithreading capabilities and
can result in a more complicated implementation. As such, AIDL is not suitable for most applications
and this document does not discuss how to use it for your service. If you're certain that you need
-to use AIDL directly, see the <a href="{@docRoot}guide/topics/advanced/aidl.html">AIDL</a>
+to use AIDL directly, see the <a href="{@docRoot}guide/developing/tools/aidl.html">AIDL</a>
document.</p>
@@ -341,7 +341,7 @@ service, which must then handle multi-threading.</p>
<p>For most applications, the service doesn't need to perform multi-threading, so using a {@link
android.os.Messenger} allows the service to handle one call at a time. If it's important
that your service be multi-threaded, then you should use <a
-href="{@docRoot}guide/topics/advanced/aidl.html">AIDL</a> to define your interface.</p>
+href="{@docRoot}guide/developing/tools/aidl.html">AIDL</a> to define your interface.</p>
</div>
</div>