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

Side by Side Diff: chrome/renderer/extensions/extension_localization_peer.cc

Issue 293353007: Move resource_response_info from webkit/ to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/extensions/extension_localization_peer.h" 5 #include "chrome/renderer/extensions/extension_localization_peer.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/strings/string_util.h" 8 #include "base/strings/string_util.h"
9 #include "chrome/common/url_constants.h" 9 #include "chrome/common/url_constants.h"
10 #include "extensions/common/constants.h" 10 #include "extensions/common/constants.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 } 42 }
43 43
44 void ExtensionLocalizationPeer::OnUploadProgress( 44 void ExtensionLocalizationPeer::OnUploadProgress(
45 uint64 position, uint64 size) { 45 uint64 position, uint64 size) {
46 NOTREACHED(); 46 NOTREACHED();
47 } 47 }
48 48
49 bool ExtensionLocalizationPeer::OnReceivedRedirect( 49 bool ExtensionLocalizationPeer::OnReceivedRedirect(
50 const GURL& new_url, 50 const GURL& new_url,
51 const GURL& new_first_party_for_cookies, 51 const GURL& new_first_party_for_cookies,
52 const webkit_glue::ResourceResponseInfo& info) { 52 const content::ResourceResponseInfo& info) {
53 NOTREACHED(); 53 NOTREACHED();
54 return false; 54 return false;
55 } 55 }
56 56
57 void ExtensionLocalizationPeer::OnReceivedResponse( 57 void ExtensionLocalizationPeer::OnReceivedResponse(
58 const webkit_glue::ResourceResponseInfo& info) { 58 const content::ResourceResponseInfo& info) {
59 response_info_ = info; 59 response_info_ = info;
60 } 60 }
61 61
62 void ExtensionLocalizationPeer::OnReceivedData(const char* data, 62 void ExtensionLocalizationPeer::OnReceivedData(const char* data,
63 int data_length, 63 int data_length,
64 int encoded_data_length) { 64 int encoded_data_length) {
65 data_.append(data, data_length); 65 data_.append(data, data_length);
66 } 66 }
67 67
68 void ExtensionLocalizationPeer::OnCompletedRequest( 68 void ExtensionLocalizationPeer::OnCompletedRequest(
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 l10n_messages = extensions::GetL10nMessagesMap(extension_id); 123 l10n_messages = extensions::GetL10nMessagesMap(extension_id);
124 } 124 }
125 125
126 std::string error; 126 std::string error;
127 if (extensions::MessageBundle::ReplaceMessagesWithExternalDictionary( 127 if (extensions::MessageBundle::ReplaceMessagesWithExternalDictionary(
128 *l10n_messages, &data_, &error)) { 128 *l10n_messages, &data_, &error)) {
129 data_.resize(data_.size()); 129 data_.resize(data_.size());
130 } 130 }
131 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698