Skip to content

Commit

Permalink
Fix URL constants deps in Renderer ContentSettingsObserver
Browse files Browse the repository at this point in the history
The file #includes chrome/common/url_constants.h while it only needs url/ and content/public/common url_constants.h. This CL fixes that.

BUG=384874

Review URL: https://codereview.chromium.org/799923002

Cr-Commit-Position: refs/heads/master@{#308602}
  • Loading branch information
vabr authored and Commit bot committed Dec 16, 2014
1 parent 85c9b9f commit ef867a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chrome/renderer/content_settings_observer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "base/command_line.h"
#include "base/metrics/histogram.h"
#include "chrome/common/render_messages.h"
#include "chrome/common/url_constants.h"
#include "content/public/common/url_constants.h"
#include "content/public/renderer/document_state.h"
#include "content/public/renderer/navigation_state.h"
#include "content/public/renderer/render_frame.h"
Expand All @@ -20,6 +20,7 @@
#include "third_party/WebKit/public/web/WebLocalFrame.h"
#include "third_party/WebKit/public/web/WebSecurityOrigin.h"
#include "third_party/WebKit/public/web/WebView.h"
#include "url/url_constants.h"

#if defined(ENABLE_EXTENSIONS)
#include "chrome/common/extensions/chrome_extension_messages.h"
Expand Down

0 comments on commit ef867a9

Please sign in to comment.