appengine: use stdlib context instead of x/net/context

PR #341 introduce some new import `x/net/context` in parallel of PR #339 replacing them with the standard context.
This quick PR rename those imports.

Change-Id: I94f7edbee851a733b8a307c2ea60923dd990bdb4
GitHub-Last-Rev: fbe7944356b0741b69c075db921add044e5d3745
GitHub-Pull-Request: golang/oauth2#342
Reviewed-on: https://go-review.googlesource.com/c/146837
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/google/appengine_gen1.go b/google/appengine_gen1.go
index 1ca0517..83dacac 100644
--- a/google/appengine_gen1.go
+++ b/google/appengine_gen1.go
@@ -9,11 +9,11 @@
 package google
 
 import (
+	"context"
 	"sort"
 	"strings"
 	"sync"
 
-	"golang.org/x/net/context"
 	"golang.org/x/oauth2"
 	"google.golang.org/appengine"
 )
diff --git a/google/appengine_gen2_flex.go b/google/appengine_gen2_flex.go
index 819aa68..04c2c22 100644
--- a/google/appengine_gen2_flex.go
+++ b/google/appengine_gen2_flex.go
@@ -9,10 +9,10 @@
 package google
 
 import (
+	"context"
 	"log"
 	"sync"
 
-	"golang.org/x/net/context"
 	"golang.org/x/oauth2"
 )