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

Unified Diff: chrome/common/cloud_print/cloud_print_helpers.cc

Issue 9443007: Add Chrome To Mobile Service and Views Page Action. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Bail on empty GetOAuth2LoginRefreshToken(). Created 8 years, 9 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
Index: chrome/common/cloud_print/cloud_print_helpers.cc
diff --git a/chrome/common/cloud_print/cloud_print_helpers.cc b/chrome/common/cloud_print/cloud_print_helpers.cc
new file mode 100755
index 0000000000000000000000000000000000000000..cebe4a35d372079b401182e8500d602bea417da4
--- /dev/null
+++ b/chrome/common/cloud_print/cloud_print_helpers.cc
@@ -0,0 +1,94 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/common/cloud_print/cloud_print_helpers.h"
+
+#include "base/json/json_reader.h"
+#include "base/logging.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/rand_util.h"
+#include "base/stringprintf.h"
+#include "base/values.h"
+#include "chrome/common/guid.h"
+#include "googleurl/src/gurl.h"
+
+namespace cloud_print {
+
+const char kPrinterListValue[] = "printers";
+const char kSuccessValue[] = "success";
+
+// Certain cloud print requests require Chrome's X-CloudPrint-Proxy header.
+const char kChromeCloudPrintProxyHeader[] = "X-CloudPrint-Proxy: Chrome";
+
+std::string AppendPathToUrl(const GURL& url, const std::string& path) {
+ DCHECK_NE(path[0], '/');
+ std::string ret = url.path();
+ if (url.has_path() && (ret[ret.length() - 1] != '/'))
+ ret += '/';
+ ret += path;
+ return ret;
+}
+
+GURL GetUrlForSearch(const GURL& cloud_print_server_url) {
+ std::string path(AppendPathToUrl(cloud_print_server_url, "search"));
+ GURL::Replacements replacements;
+ replacements.SetPathStr(path);
+ return cloud_print_server_url.ReplaceComponents(replacements);
+}
+
+GURL GetUrlForSubmit(const GURL& cloud_print_server_url) {
+ std::string path(AppendPathToUrl(cloud_print_server_url, "submit"));
+ GURL::Replacements replacements;
+ replacements.SetPathStr(path);
+ return cloud_print_server_url.ReplaceComponents(replacements);
+}
+
+bool ParseResponseJSON(const std::string& response_data,
+ bool* succeeded,
+ DictionaryValue** response_dict) {
+ scoped_ptr<Value> message_value(base::JSONReader::Read(response_data, false));
+ if (!message_value.get())
+ return false;
+
+ if (!message_value->IsType(Value::TYPE_DICTIONARY))
+ return false;
+
+ scoped_ptr<DictionaryValue> response_dict_local(
+ static_cast<DictionaryValue*>(message_value.release()));
+ if (succeeded &&
+ !response_dict_local->GetBoolean(cloud_print::kSuccessValue, succeeded))
+ *succeeded = false;
+ if (response_dict)
+ *response_dict = response_dict_local.release();
+ return true;
+}
+
+void AddMultipartValueForUpload(const std::string& value_name,
+ const std::string& value,
+ const std::string& mime_boundary,
+ const std::string& content_type,
+ std::string* post_data) {
+ DCHECK(post_data);
+ // First line is the boundary
+ post_data->append("--" + mime_boundary + "\r\n");
+ // Next line is the Content-disposition
+ post_data->append(StringPrintf("Content-Disposition: form-data; "
+ "name=\"%s\"\r\n", value_name.c_str()));
+ if (!content_type.empty()) {
+ // If Content-type is specified, the next line is that
+ post_data->append(StringPrintf("Content-Type: %s\r\n",
+ content_type.c_str()));
+ }
+ // Leave an empty line and append the value.
+ post_data->append(StringPrintf("\r\n%s\r\n", value.c_str()));
+}
+
+// Create a MIME boundary marker (27 '-' characters followed by 16 hex digits).
+void CreateMimeBoundaryForUpload(std::string* out) {
+ int r1 = base::RandInt(0, kint32max);
+ int r2 = base::RandInt(0, kint32max);
+ base::SStringPrintf(out, "---------------------------%08X%08X", r1, r2);
+}
+
+} // namespace cloud_print
« no previous file with comments | « chrome/common/cloud_print/cloud_print_helpers.h ('k') | chrome/service/cloud_print/cloud_print_connector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698