1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef ANDROID_JNI_AUTOFILLREQUESTURL_H 6 #define ANDROID_JNI_AUTOFILLREQUESTURL_H 7 8 #include "base/basictypes.h" 9 #include <string> 10 11 namespace android { 12 13 class AutofillRequestUrl { 14 public: 15 static std::string GetQueryUrl(); 16 private: 17 DISALLOW_IMPLICIT_CONSTRUCTORS(AutofillRequestUrl); 18 }; 19 20 } // namespace android 21 22 #endif 23