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

Unified Diff: chrome/test/data/extensions/samples/mappy/mappy_toolstrip.html

Issue 159763: Rolling back change 22245. (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 5 months 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 | « chrome/test/data/extensions/samples/mappy/mappy_content_script.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/samples/mappy/mappy_toolstrip.html
===================================================================
--- chrome/test/data/extensions/samples/mappy/mappy_toolstrip.html (revision 22246)
+++ chrome/test/data/extensions/samples/mappy/mappy_toolstrip.html (working copy)
@@ -1,68 +0,0 @@
-<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAATfHumDbW3OmRByfquHd3SRTRERdeAiwZ9EeJWta3L_JZVS0bOBRQeZgr4K0xyVKzUdnnuFl8X9PX0w&sensor=false"
- type="text/javascript"></script>
-<script>
-var maps_key = "ABQIAAAATfHumDbW3OmRByfquHd3SRTRERdeAiwZ9EeJWta3L_JZVS0bOBRQeZgr4K0xyVKzUdnnuFl8X9PX0w";
-
-function xhr_geocode(address) {
- var xhr = new XMLHttpRequest();
- xhr.onreadystatechange = function() {
- if (xhr.readyState == 4 && xhr.status == 200) {
- console.log(xhr.responseText);
- var parsed = JSON.parse(xhr.responseText);
- console.dir(parsed);
- var point = parsed.Placemark[0].Point.coordinates;
- var latlng = point[1] + "," + point[0];
- window.open("http://maps.google.com/staticmap?center=" + latlng +
- "&markers=" + latlng + "&zoom=14" +
- "&size=512x512&sensor=false&key=" + maps_key,
- "mappy_popup",
- "width=512,height=512");
- } else {
- console.log("xhr: " + xhr.readyState);
- }
- };
- var url =
- "http://maps.google.com/maps/geo?output=json&oe=utf8&sensor=false&key=" +
- maps_key + "&q=" + address;
- console.log(url);
- xhr.open("GET", url);
- xhr.send(null);
-}
-
-function gclient_geocode(address) {
- var geocoder = new GClientGeocoder();
- geocoder.getLatLng(address, function(point) {
- if (!point) {
- console.log(address + " not found");
- } else {
- var latlng = point.toUrlValue();
- var url = "http://maps.google.com/staticmap?center=" + latlng +
- "&markers=" + latlng + "&zoom=14" +
- "&size=512x512&sensor=false&key=" + maps_key;
- //window.open(url, "mappy_popup", "width=512,height=512");
- document.body.style.width = "512px";
- setTimeout(chrome.toolstrip.expand, 100, 512, url);
- }
- });
-}
-
-function map() {
- chrome.tabs.getSelected(null, function(tab) {
- var port = chrome.tabs.connect(tab.id);
- if (!port) {
- console.log("no port");
- } else {
- port.onMessage.addListener(function(data) {
- var address = data.values[0];
- //xhr_geocode(address);
- gclient_geocode(address);
- });
- port.postMessage({message: "hello tab: " + tab.id});
- console.log("sent message");
- }
- });
-};
-</script>
-<div class="toolstrip-button" onclick="map()">
-<span>Mappy</span>
-</div>
« no previous file with comments | « chrome/test/data/extensions/samples/mappy/mappy_content_script.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698