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

Unified Diff: chrome_frame/navigation_constraints.h

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 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 | « chrome_frame/metrics_service.cc ('k') | chrome_frame/navigation_constraints.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/navigation_constraints.h
diff --git a/chrome_frame/navigation_constraints.h b/chrome_frame/navigation_constraints.h
deleted file mode 100644
index 5ddaf4c21e937fa1fabb4a96fad71cbfbba13025..0000000000000000000000000000000000000000
--- a/chrome_frame/navigation_constraints.h
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (c) 2011 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.
-
-#ifndef CHROME_FRAME_NAVIGATION_CONSTRAINTS_H_
-#define CHROME_FRAME_NAVIGATION_CONSTRAINTS_H_
-
-#include <urlmon.h>
-#include <windows.h>
-
-#include "base/win/scoped_comptr.h"
-#include "url/gurl.h"
-
-// Provides an interface which controls navigation within ChromeFrame.
-class NavigationConstraints {
- public:
- virtual ~NavigationConstraints() {}
- virtual bool AllowUnsafeUrls() = 0;
- virtual bool IsSchemeAllowed(const GURL& url) = 0;
- virtual bool IsZoneAllowed(const GURL& url) = 0;
-};
-
-// Provides default implementation for the NavigationConstraints interface.
-class NavigationConstraintsImpl : public NavigationConstraints {
- public:
- NavigationConstraintsImpl();
- virtual ~NavigationConstraintsImpl() {}
-
- // NavigationConstraints method overrides.
- virtual bool AllowUnsafeUrls();
- virtual bool IsSchemeAllowed(const GURL& url);
- virtual bool IsZoneAllowed(const GURL& url);
-
- bool is_privileged() const;
- void set_is_privileged(bool is_privileged);
-
- private:
- base::win::ScopedComPtr<IInternetSecurityManager> security_manager_;
-
- // The plugin is privileged if it is:
- // * Being hosted by a custom host exposing the SID_ChromeFramePrivileged
- // service.
- //
- // When privileged, additional interfaces are made available to the user.
- bool is_privileged_;
-};
-
-#endif // CHROME_FRAME_NAVIGATION_CONSTRAINTS_H_
« no previous file with comments | « chrome_frame/metrics_service.cc ('k') | chrome_frame/navigation_constraints.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698