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

Side by Side Diff: content/public/common/ssl_status.h

Issue 9382037: Move ContextMenuParams struct from webkit/glue to content/public/common. The reasons are: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_PUBLIC_BROWSER_SSL_STATUS_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_SSL_STATUS_H_
6 #define CONTENT_PUBLIC_BROWSER_SSL_STATUS_H_ 6 #define CONTENT_PUBLIC_COMMON_SSL_STATUS_H_
7 #pragma once 7 #pragma once
8 8
9 #include "content/common/content_export.h" 9 #include "content/common/content_export.h"
10 #include "content/public/common/security_style.h" 10 #include "content/public/common/security_style.h"
11 #include "net/base/cert_status_flags.h" 11 #include "net/base/cert_status_flags.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 // Collects the SSL information for this NavigationEntry. 15 // Collects the SSL information for this NavigationEntry.
16 struct CONTENT_EXPORT SSLStatus { 16 struct CONTENT_EXPORT SSLStatus {
(...skipping 28 matching lines...) Expand all
45 int security_bits; 45 int security_bits;
46 int connection_status; 46 int connection_status;
47 // A combination of the ContentStatusFlags above. 47 // A combination of the ContentStatusFlags above.
48 int content_status; 48 int content_status;
49 49
50 // Copy and assignment is explicitly allowed for this class. 50 // Copy and assignment is explicitly allowed for this class.
51 }; 51 };
52 52
53 } // namespace content 53 } // namespace content
54 54
55 #endif // CONTENT_PUBLIC_BROWSER_SSL_STATUS_H_ 55 #endif // CONTENT_PUBLIC_COMMON_SSL_STATUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698