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

Side by Side Diff: chrome/browser/in_process_webkit/browser_webkitclient_impl.h

Issue 2847091: Fix bad license header under chrome/ directory. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: Created 10 years, 4 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 (c) 2009 The Chromium Authors. All rights reserved. Use of this 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // source code is governed by a BSD-style license that can be found in the 2 // Use of this source code is governed by a BSD-style license that can be
3 // LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ 5 #ifndef CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_
6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ 6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include "webkit/glue/webfilesystem_impl.h" 9 #include "webkit/glue/webfilesystem_impl.h"
10 #include "webkit/glue/webkitclient_impl.h" 10 #include "webkit/glue/webkitclient_impl.h"
11 11
12 class BrowserWebKitClientImpl : public webkit_glue::WebKitClientImpl { 12 class BrowserWebKitClientImpl : public webkit_glue::WebKitClientImpl {
13 public: 13 public:
(...skipping 30 matching lines...) Expand all
44 bool isLocalStorage); 44 bool isLocalStorage);
45 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository(); 45 virtual WebKit::WebSharedWorkerRepository* sharedWorkerRepository();
46 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, 46 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name,
47 bool sync_dir); 47 bool sync_dir);
48 48
49 private: 49 private:
50 webkit_glue::WebFileSystemImpl file_system_; 50 webkit_glue::WebFileSystemImpl file_system_;
51 }; 51 };
52 52
53 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_ 53 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_BROWSER_WEBKITCLIENT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698