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

Side by Side Diff: chrome/common/pnacl_types.h

Issue 18919005: Migrate from googleurl/ includes to url/ ones in the remaining top-level directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make googleurl a temp include rule - to prevent others including it again Created 7 years, 5 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
« no previous file with comments | « chrome/browser/ui/search/instant_ntp.cc ('k') | chrome_frame/chrome_frame_activex.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 #ifndef CHROME_COMMON_PNACL_TYPES_H_ 5 #ifndef CHROME_COMMON_PNACL_TYPES_H_
6 #define CHROME_COMMON_PNACL_TYPES_H_ 6 #define CHROME_COMMON_PNACL_TYPES_H_
7 7
8 // This file exists (instead of putting this type into nacl_types.h) because 8 // This file exists (instead of putting this type into nacl_types.h) because
9 // nacl_types is built into nacl_helper in addition to chrome, and we don't 9 // nacl_types is built into nacl_helper in addition to chrome, and we don't
10 // want to pull googleurl into there, since it would be unnecessary bloat. 10 // want to pull googleurl into there, since it would be unnecessary bloat.
11 11
12 #include "base/time/time.h" 12 #include "base/time/time.h"
13 #include "googleurl/src/gurl.h" 13 #include "url/gurl.h"
14 14
15 namespace nacl { 15 namespace nacl {
16 // Cache-related information about pexe files, sent from the plugin/renderer 16 // Cache-related information about pexe files, sent from the plugin/renderer
17 // to the browser. 17 // to the browser.
18 // 18 //
19 // If you change this, you will also need to update the IPC serialization in 19 // If you change this, you will also need to update the IPC serialization in
20 // nacl_host_messages.h. 20 // nacl_host_messages.h.
21 struct PnaclCacheInfo { 21 struct PnaclCacheInfo {
22 PnaclCacheInfo(); 22 PnaclCacheInfo();
23 ~PnaclCacheInfo(); 23 ~PnaclCacheInfo();
24 GURL pexe_url; 24 GURL pexe_url;
25 int abi_version; 25 int abi_version;
26 int opt_level; 26 int opt_level;
27 base::Time last_modified; 27 base::Time last_modified;
28 std::string etag; 28 std::string etag;
29 }; 29 };
30 30
31 } // namespace nacl 31 } // namespace nacl
32 32
33 #endif // CHROME_COMMON_PNACL_TYPES_H_ 33 #endif // CHROME_COMMON_PNACL_TYPES_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/search/instant_ntp.cc ('k') | chrome_frame/chrome_frame_activex.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698