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

Unified Diff: webkit/glue/web_intent_reply_data.cc

Issue 12340107: Remove some more web intents code I missed previously (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: cros Created 7 years, 10 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 | « webkit/glue/web_intent_reply_data.h ('k') | webkit/glue/web_intent_reply_data_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/web_intent_reply_data.cc
diff --git a/webkit/glue/web_intent_reply_data.cc b/webkit/glue/web_intent_reply_data.cc
deleted file mode 100644
index 1b30891c006e7032d6fd18acd4bef744a900c7d7..0000000000000000000000000000000000000000
--- a/webkit/glue/web_intent_reply_data.cc
+++ /dev/null
@@ -1,38 +0,0 @@
-// 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 "webkit/glue/web_intent_reply_data.h"
-
-namespace webkit_glue {
-namespace {
-
-const int64 kUnknownFileSize = -1;
-
-}
-
-WebIntentReply::WebIntentReply()
- : type(WEB_INTENT_REPLY_INVALID), data_file_size(kUnknownFileSize) {}
-
-WebIntentReply::WebIntentReply(
- WebIntentReplyType response_type, string16 response_data)
- : type(response_type),
- data(response_data),
- data_file_size(kUnknownFileSize) {}
-
-WebIntentReply::WebIntentReply(
- WebIntentReplyType response_type,
- base::FilePath response_data_file,
- int64 response_data_file_length)
- : type(response_type),
- data_file(response_data_file),
- data_file_size(response_data_file_length) {}
-
-bool WebIntentReply::operator==(const WebIntentReply& other) const {
- return type == other.type &&
- data == other.data &&
- data_file == other.data_file &&
- data_file_size == other.data_file_size;
-}
-
-} // namespace webkit_glue
« no previous file with comments | « webkit/glue/web_intent_reply_data.h ('k') | webkit/glue/web_intent_reply_data_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698