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

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

Issue 273193004: Move some content url constants to /url. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing files. Created 6 years, 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/chrome_extension_helper.h" 5 #include "chrome/renderer/extensions/chrome_extension_helper.h"
6 6
7 #include "base/strings/string16.h" 7 #include "base/strings/string16.h"
8 #include "chrome/common/extensions/chrome_extension_messages.h" 8 #include "chrome/common/extensions/chrome_extension_messages.h"
9 #include "chrome/renderer/web_apps.h" 9 #include "chrome/renderer/web_apps.h"
10 #include "content/public/common/url_constants.h"
11 #include "content/public/renderer/render_view.h" 10 #include "content/public/renderer/render_view.h"
12 #include "ipc/ipc_message_macros.h" 11 #include "ipc/ipc_message_macros.h"
13 #include "third_party/WebKit/public/web/WebView.h" 12 #include "third_party/WebKit/public/web/WebView.h"
14 #include "url/gurl.h" 13 #include "url/gurl.h"
14 #include "url/url_constants.h"
15 15
16 namespace extensions { 16 namespace extensions {
17 17
18 ChromeExtensionHelper::ChromeExtensionHelper(content::RenderView* render_view) 18 ChromeExtensionHelper::ChromeExtensionHelper(content::RenderView* render_view)
19 : content::RenderViewObserver(render_view), 19 : content::RenderViewObserver(render_view),
20 content::RenderViewObserverTracker<ChromeExtensionHelper>(render_view) { 20 content::RenderViewObserverTracker<ChromeExtensionHelper>(render_view) {
21 } 21 }
22 22
23 ChromeExtensionHelper::~ChromeExtensionHelper() { 23 ChromeExtensionHelper::~ChromeExtensionHelper() {
24 } 24 }
(...skipping 15 matching lines...) Expand all
40 base::string16 error; 40 base::string16 error;
41 web_apps::ParseWebAppFromWebDocument( 41 web_apps::ParseWebAppFromWebDocument(
42 render_view()->GetWebView()->mainFrame(), &app_info, &error); 42 render_view()->GetWebView()->mainFrame(), &app_info, &error);
43 } 43 }
44 44
45 // Prune out any data URLs in the set of icons. The browser process expects 45 // Prune out any data URLs in the set of icons. The browser process expects
46 // any icon with a data URL to have originated from a favicon. We don't want 46 // any icon with a data URL to have originated from a favicon. We don't want
47 // to decode arbitrary data URLs in the browser process. See 47 // to decode arbitrary data URLs in the browser process. See
48 // http://b/issue?id=1162972 48 // http://b/issue?id=1162972
49 for (size_t i = 0; i < app_info.icons.size(); ++i) { 49 for (size_t i = 0; i < app_info.icons.size(); ++i) {
50 if (app_info.icons[i].url.SchemeIs(content::kDataScheme)) { 50 if (app_info.icons[i].url.SchemeIs(url::kDataScheme)) {
51 app_info.icons.erase(app_info.icons.begin() + i); 51 app_info.icons.erase(app_info.icons.begin() + i);
52 --i; 52 --i;
53 } 53 }
54 } 54 }
55 55
56 Send(new ChromeExtensionHostMsg_DidGetApplicationInfo( 56 Send(new ChromeExtensionHostMsg_DidGetApplicationInfo(
57 routing_id(), page_id, app_info)); 57 routing_id(), page_id, app_info));
58 } 58 }
59 59
60 } // namespace extensions 60 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/renderer/content_settings_observer.cc ('k') | chrome/renderer/searchbox/searchbox_extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698